Advertisement
5bub

Python Register

Sep 12th, 2019
1,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. import requests
  2.  
  3. ema = "@"
  4. user = "user"
  5. passz = "pass"
  6.  
  7. r2 = requests.post('https://www.instagram.com/accounts/web_create_ajax/', data={'email': ema,
  8. 'password': passz,
  9. 'username': user,
  10. 'seamless_login_enabled': '1',
  11. 'first_name': 'Python Reg by @5bub',
  12. 'opt_into_one_tap': 'False'}, headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36', 'Cookie': 'csrftoken=missing; rur=FTW; mid=XXkFxAAEAAFeYHMhIHhmQjDv5942', 'X-CSRFToken': 'missing'})
  13.  
  14.  
  15. print(r2.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement