Questions tagged [vk]

VK is the largest European social network with over a 100 million active users.

VK (Originally VKontakte) is the biggest social network service in Easter Europe and North Asia, it is available in several languages but popular particularly among Russian-speaking users around the world. Like other social networks, VK allows users to message contacts publicly or privately, create groups, public pages and events, share and tag images, audio and video, and play browser-based games. The main difference from Facebook is the ton of illegal content.

As of December 2014, VK has at least 216 million accounts. VK is ranked 22 in Alexa's global Top 500 sites and is the second most visited website in Russia. In January 2014, VK had an average of 65 million daily users.

More info:

305 questions
4
votes
2 answers

Access denied: no access to call this method

I'm trying to implement VK API, so thanks OAuth code I get a token and just add this scope offline,audio and now doing this request: https://api.vk.com/method/account.getInfo?access_token=XXXXX&v=5.62 And go this in return: { "error": { …
blackarcanis
  • 542
  • 1
  • 4
  • 23
4
votes
2 answers

VK API, access denied for post on wall of a community, fail WALL Permissions

I build API for post on my community of VK. But I check my permission for my app, and I have all permissions, but not load WALL permissions. In the scope for OAuth, I put all scopes and not work the WALL. I check the "Api.console" and they have…
4
votes
1 answer

VK iOS sdk authorize

I'm trying to setup VK iOS SDK in a Swift 2.0 project. I'm getting an error and I don't have any idea why it occurs. AppDelegate.swift: // // AppDelegate.swift // iosVKMusic // // Created by Nick on 25.06.15. // Copyright © 2015 Funtrum. All…
nickaroot
  • 317
  • 2
  • 12
4
votes
3 answers

How to open VKontakte app with a specific friend?

Background In order to open Facebook app with a specific Facebook friend, you can use this intent: final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("fb://profile/%s", friendId))); A similar solution is found for…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
4
votes
4 answers

How to get an access token from vKontakte (VK) via OAuth2?

I'm trying to get an access token from vKontakte (russian social network) via their OAuth2 API. This is how I make the…
Uli
  • 2,625
  • 10
  • 46
  • 71
4
votes
3 answers

Get a user's avatar VK SDK

Good day. The question on the use of library VK. How to get a profile picture, using VKSDK\ Can not find the right information on the Internet.         
user3366290
  • 447
  • 1
  • 5
  • 7
4
votes
3 answers

python-social-auth with django. Can't get user email in VK.com

settings.py has: SOCIAL_AUTH_VK_OAUTH2_SCOPE = ['email'] But it doesn't work. Simultanously I can get email from Facebook.
Max
  • 519
  • 1
  • 7
  • 14
4
votes
3 answers

User info from VKontakte in Android

I am writing an application that needs to use the user data taken from the client social network VKontakte. I did authorize VKontakte. VKSdk.initialize(sdkListener, String.valueOf(idVK), VKAccessToken.tokenFromSharedPreferences(this,…
Alex Sh
  • 131
  • 1
  • 3
  • 10
4
votes
1 answer

How to test Vkontakte application with local WS?

I've developed a Vkontakte application by using Adobe Flex technology with WCF as my server side. The whole thing works perfectly on localhost, but after uploading it to Vkontakte - the WS doesn't seem to work and I get this…
Eran Betzalel
  • 4,105
  • 3
  • 38
  • 66
4
votes
3 answers

Upload image to vk.com

I can successfully post a message in VKontakte (vk.com), but I can't figure out the way to post a message with an image in the attachment. Method: createWallPost(long owner_id, String text, Collection attachments, String export, boolean…
ODAXY
  • 335
  • 4
  • 12
4
votes
2 answers

What is the best way to upload files to another domain from a browser?

I am creating a web service of scheduled posts to some social network.Need help dealing with file uploads under high traffic. Process overview: User uploads files to SomeServer (not mine). SomeServer then responds with a JSON string. My web app…
Serge
  • 1,531
  • 2
  • 21
  • 44
3
votes
1 answer

spring oauth2 authorization code flow , configuration for VK (Vkontakte)

I'm using social network Vkontakte as Oauth2 authorization server. So I have several steps: 1) get code with request with request_type=code 2) get accessToken when I send request to access token uri So I want to use Spring Oauth2, but I should get…
Sergii Getman
  • 3,845
  • 5
  • 34
  • 50
3
votes
1 answer

How to post on the wall vkontakte via oauth?

Error code:15 Error Message: "Access denied: no access to call this method" scope=offline,wall
user5155204
3
votes
1 answer

VKSdk how to set delegate in Swift?

I'm trying to make VKSdk work with Swift. Documentation says that I need to set delegate and in order to do this I have to do the following in Objective-c VKSdk *sdkInstance = [VKSdk initializeWithAppId:YOUR_APP_ID]; [sdkInstance…
Alexey K
  • 6,537
  • 18
  • 60
  • 118
3
votes
2 answers

How to get email from VK via oAuth library

Anybody knows a way to get email id from vk social site? When I am trying, it is providing only below information. stdClass Object ( [response] => Array ( [0] => stdClass Object ( [uid] => 322372142 [first_name] => Gaurav …
Nitin
  • 328
  • 2
  • 11
1
2
3
20 21