Hi,
My Python code is returning an error whenever I call the API, these credentials work fine on the postman, but not on my python, what am I doing wrong?
username = "
username@email.com"
password = "MySecretPassword"
token = 'My Personal Token'
headers = { 'X-Authorization' : token }
r = requests . post ( url , auth =( username , password ), headers = headers )
Why am I getting 401?