Hello. There is just a script that posts a text entry on the VK wall:
import vk my_app_id = ****** user_login = '******' user_password = '*****' session = vk.AuthSession(scope='wall', app_id=my_app_id, user_login=user_login, user_password=user_password) vk.api.access_token = "*********************" api = vk.API(session) api.wall.post(owner_id='*****', message='Привет') It is necessary that the photo was attached to the message from the link. I read the documentation, but did not fully understand what was happening.
Thank you in advance.