raghulprashath
Results
2
comments of
raghulprashath
> 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: >...
Actually I was able to solve this problem. ``` import requests # from bs4 import BeautifulSoup username = "admin" password = "admin" session = requests.session() login_form = session.post('http://localhost:8088/login') # soup...