May-09-2018, 01:40 PM
I'm creating an Instagram sample script but when I try to login with requests.post it doesn't seem to work. I'm able to login with post on many other websites but I can't get it to work
with a few ones(Including Instagram)
I know that the login fails because the url that is printed redirects me to the login page.
I would really appreciate some help
(Please don't tell my to use the api, it's not an option in my case. Thank you)
with a few ones(Including Instagram)

### Instagram Turbo ### import requests wanted_username = 'justinbieber' check = requests.get('https://www.instagram.com/' + wanted_username + '/') print(check.url) answer = check.ok print(answer) def login(): login_url = 'https://www.instagram.com/' with requests.session() as c: c.get(login_url) token = c.cookies['csrftoken'] print(token) payload = { 'username': '*****', 'password': '*****', 'access_token': token } post = c.post(login_url, data=payload, allow_redirects=True) edit = c.get('https://www.instagram.com/accounts/edit/') print(edit.url) login()Here's the output i get:
Quote:https://www.instagram.com/justinbieber/
True
QDuwipIZbe5ICf2iXmztS0uCpFfrxKf3
https://www.instagram.com/accounts/login...unts/edit/
I know that the login fails because the url that is printed redirects me to the login page.
I would really appreciate some help

(Please don't tell my to use the api, it's not an option in my case. Thank you)