I decided to try myself in vk api, decided to use Python, wrote a simple code:
import vk session = vk.AuthSession(app_id= 'мой_айди', access_token='мой_токен') vk_api = vk.API(session) vk_api.wall.post(message="Hello World!!! I am the first message by python app with vk api :)", v='5.74') But the error returned indicated that I had no rights
vk.exceptions.VkAPIError: 15. Access denied: no access to call this method. I decided to create a new token, I start to create, I added the right to work with messages, and he said that my application is not "desktop" and you have no right to it.
{"error":"invalid_scope","error_description":"Only desktop applications have access to user messages"} How to solve this problem?
vk.AuthSession:scope='wall'- Pavel Durmanov