I have trouble accessing R4j via API using python. I just get bunch of 404 or unauthorized. Can someone give me some guidance or provide me a very basic python file accessing the license status?
I've tried different things; my newest idea below:
token=...
url='http://blabla.atlassian.net/rest/com.easesolutions.jira.plugins.requirements/2.0/license'
auth=HTTPBasicAuth([email], token)
headers = {"Accept": "application/json"}
response= requests.request("GET", url, headers=headers, auth=auth)
...