Skip to content

Instantly share code, notes, and snippets.

@WillianFuks
Created June 29, 2021 23:11
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/75648c2c034f032085b14cbc3f91f4ba to your computer and use it in GitHub Desktop.
Save WillianFuks/75648c2c034f032085b14cbc3f91f4ba to your computer and use it in GitHub Desktop.
import requests
sess = requests.Session()
sess.verify = False # For testing locally
r = sess.post('https://localhost:8002/login/',
data={'username': 'alice', 'password': 'pass'})
sess.headers.update({'AUTHORIZATION': f'Bearer {r.json()["access"]}'})
r = sess.post('https://localhost:8002/validate_access/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment