Пока безрезультатно, кто может помочь? ))
import requests def autoriz (): session = requests.Session() url = 'https://login.vk.com/?act=login' data = {'email': 'Login', 'pass': 'Password'} print(requests.post(url, data=data).text) def main(): autoriz() if __name__ == "__main__": main()
Вот запрос сервера
https://login.vk.com/?act=login POST /?act=login HTTP/1.1 Host: login.vk.com User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:54.0) Gecko/20100101 Firefox/54.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Referer: https://vk.com/ Cookie: remixlang=0; remixlhk=91449f35rd9335b6f8; remixflash=0.0.0; remixscreen_depth=24; remixdt=28800; remixseenads=1; t=8bb65e68e7aba59d62bc61da; remixtst=6d0d172c Connection: keep-alive Upgrade-Insecure-Requests: 1 act=login&role=al_frame&expire=&captcha_sid=&captcha_key=&_origin=https%3A%2F%2Fvk.com&ip_h=9c7275eda134r621f8&lg_h=33770f44feb32a7873&email=login&pass=password: undefined
Буду рад любой помощи
