With using the requests module, I'm trying to create an "auto-login" into my Reddit account program. My Python code:
s = requests.Session()
url = 'https://www.reddit.com/login'
payload = {'username':'username','password':'password'}
response = s.post(url,data=payload)
response.status_code
response.content
'response.status_code' keeps returning 400. Why do I keep getting a 400 http response when my Chrome settings allow cookies? Also, 'response.content' returns that I have a bad CSRF Token.
b'<html>\n <head>\n <title>400 Bad CSRF Token</title>\n </head>\n <body>\n <h1>400 Bad CSRF Token</h1>\n Access is denied. This server can not verify that your cross-site request forgery token belongs to your login session. Either you supplied the wrong cross-site request forgery token or your session no longer exists. This may be due to session timeout or because browser is not supplying the credentials required, as can happen when the browser has cookies turned off.<br/><br/>\ncheck_csrf_token(): Invalid token\n\n\n </body>\n</html>
This totally confuses me because I am using a Session. I have no idea why this is going wrong, does anybody know why and how to fix this?
Its work for me.use requests.post url as user profile link.