Skip to content

Not possible any more to get a token for the given user #12

@vitche

Description

@vitche

Code for getting acccess token should include the following:

        // Построение ссылки
        StringBuilder builder = new StringBuilder("https://oauth.vk.com/token?grant_type=password&scope=notify,friends,photos,audio,video,docs,messages,notifications,offline,wall");
        builder.Append("&client_id=");
        builder.Append(applicationIdentifier);
        builder.Append("&client_secret=");
        builder.Append(applicationSecret);
        builder.Append("&username=");
        builder.Append(logOn);
        builder.Append("&password=");
        builder.Append(password);
        if (!string.IsNullOrEmpty(idCaptcha) && !string.IsNullOrEmpty(strCaptcha))
        {
            builder.Append("&captcha_sid=");
            builder.Append(idCaptcha);
            builder.Append("&captcha_key=");
            builder.Append(strCaptcha);
        }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions