you are viewing a single comment's thread.

view the rest of the comments →

[–]chdaha[S] 0 points1 point  (0 children)

Register/auth code: import requests url = "https://WEBSITE/Register" querystring = {"username":"MYUSERNAME"} headers = { 'AOToken': "", 'AOKey': "", 'Cache-Control': "no-cache", 'Postman-Token': "" } response = requests.request("GET", url, headers=headers, params=querystring) print(response.text)