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
2
votes
1 answer

Share Audio file with VK application

I'm trying to share audio files from my android app with other applications including VK: https://play.google.com/store/apps/details?id=com.vkontakte.android&hl=en The sharing functionality works fine with different applications, but not with VK.…
KPACHblu
  • 51
  • 1
  • 12
2
votes
1 answer

Implementing OAuth2 with Rauth for vk.com

I'm trying to implement Oauth2 authorization using Rauth for vk.com provider and I have the following issue: As far as I know there is no way to obtain users email address through vk.com api call, but it sends email address with access_token in json…
Roman Godov
  • 23
  • 1
  • 5
2
votes
1 answer

vk.com getting token always gives access_token has expired

I'm testing the vk.com api to be able to perform a search. I can get the token, but when I use it, it always returns the error: "access_token has expired" Please can you give me a hand to see if the code is wrong, or is it a vk configuration? Thank…
Gabriel Sule
  • 373
  • 6
  • 17
2
votes
0 answers

VK oauth2 token get using java

So I am writing a java program that does some basic http post and get requests to the VKontakte API. So far so good. I have all keys and tokens required so far, but am Struggling with one thing: When I get my oauth2 token, I have to get it through…
Spade Johnsson
  • 522
  • 2
  • 7
  • 23
2
votes
0 answers

How to invite some friends using VK SDK in Xamarin.Android

guys. I'm trying to use vk api sdk in Xamarin.Android. I create a request: var token = VKHelper.GetVkUserToken(App.Data.Setting.List); var iparams = new Dictionary(); iparams.Add(VKApiConst.UserId,…
SJ Krypaa
  • 21
  • 2
2
votes
0 answers

ASP.NET Web API 2 external logins with VK Vkontakte in AngularJS app

I recently read Taiseer’s post on “ASP.NET Web API 2 external logins with Facebook and Google in AngularJS app”. I got my solution working perfectly with Google and Facebook. I decided to extend the project to support Vk. Does anyone know how I…
2
votes
0 answers

cannot print by xlsxwriter

I find next code, by using it i can get text comments from groups. With vk api no problems, all is good. But there something wrong with printing in excel: import vk_requests import time import xlsxwriter import datetime import codecs api =…
2
votes
2 answers

I want to authorize through vk.com with using python-social-auth and get error with redirect uri

Error { "error":"invalid_request", "error_description":"redirect_uri is incorrect, check application redirect uri in the settings page" } settings.py AUTHENTICATION_BACKENDS = ( 'social.backends.vk.VKOAuth2', …
2
votes
1 answer

VK Android SDK - response.parsedModel is null

I'm using the latest Android SDK for VK, and trying to get posts from my wall: VKParameters vkParameters = VKParameters.from(VKApiConst.USER_ID, SettingsManager.getInstance().getVkId()); VKRequest vkRequest =…
artem
  • 16,382
  • 34
  • 113
  • 189
2
votes
1 answer

Curl return false on hostinger server (curl enabled)

Using: hostinger free php 5.5.26 curl enabled 7.19.7 "laravel/framework": "5.2.*" and "vladkens/vk": "^0.1.9" I'm getting false response(bool(false)) using this function: private function request($url, $method = 'GET', $postfields =…
Oleg Sapishchuk
  • 667
  • 6
  • 18
2
votes
0 answers

Salesforce and vk.com API integration

I need to implement such functionality, that can allow to manage vk.com* entities (create posts, send messages, add new friends etc) form Salesforce side. Although vk.com provides rich API with good documentation, but I look for already developed…
Hleb
  • 7,037
  • 12
  • 58
  • 117
2
votes
2 answers

How to upload video via the VK api

I am new at VK api. I want to upload video via the VK API. I cannot get sample codes in my investigation in google. Can anyone give me sample code.
user3702350
  • 25
  • 1
  • 7
2
votes
1 answer

Cannot retrieve push-notifications with VK SDK on Windows Phone

Ok, I cannot get any push-notifications from VK despite the fact I'm register device in system. Here's code for registration and I get OK: Dictionary dic = new Dictionary(); dic.Add("token",…
Vlad
  • 852
  • 10
  • 23
2
votes
1 answer

getting email from javascript API in VKontakte

I currently working on the javascript SDK to implement VK Connect on my website. Everything is working good except that I'm not able to get the user's email. Here is the call I make : VK.Auth.login(function(response) { console.info(response); },…
david yeah
  • 244
  • 1
  • 4
  • 11
2
votes
0 answers

Using Python with VK API, how can I get the checkins from a particular street?

I've been using VK API places.getCheckins method to get the check-ins from a particular street and then use them for sentiment analysis. For it to work I have to specify the latitude and longitude parameters. I've downloaded some streets coordinates…