Marcin Zegarmistrz
Results
2
comments of
Marcin Zegarmistrz
@one-data-cookie @mrshu @sweco Can you review?
Instead of ``` #trying to use the "current user" request as a test response = requests.get('http://localhost:8088/api/v1/me', headers=headers) ``` you should try: ``` session.headers.update(headers) response = session.get('http://localhost:8088/api/v1/me') ```