vitche
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))...