Skip to content

Instantly share code, notes, and snippets.

@WillianFuks
Created June 29, 2021 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillianFuks/7d8f89023da9887d4b62208b973f41ec to your computer and use it in GitHub Desktop.
Save WillianFuks/7d8f89023da9887d4b62208b973f41ec to your computer and use it in GitHub Desktop.
import requests
sess = requests.Session()
sess.verify = False # For testing locally
sess.post('https://localhost:8002/login/',
data={'username': 'alice', 'password': 'pass'})
sess.headers.update({'X-CSRFToken': sess.cookies['csrftoken']})
r = sess.post('https://localhost:8002/validate_access/',
headers={'REFERER': 'https://localhost:8002'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment