I'm trying to get an access token from vKontakte (russian social network) via their OAuth2 API. This is how I make the call:
https://oauth.vk.com/authorize?client_id=12345&scope=wall,offline&redirect_uri=https://www.example.com/oauth/vk.php&display=page&v=5.24&response_type=token
I'm receiving an access token but if I try to post a message with it, I'm receiving this error:
//error: Permission to perform this action is denied for non-standalone applications: you should request token using blank.html page.
My app is a standalone application - why do I receive the error?