Did the recent “account migration” reference here https://status.particle.io/incidents/s3jbd9m136b8 break the cloud API to obtain a token? I have a python script that makes an API request as shown below. It’s been working great for the last several weeks/months. I did not change my, User, PW, Secret or ID. Here is how I make the API call:
data = {
'grant_type': 'password',
'username': Config.PARTICLE_USER,
'password': Config.PARTICLE_PW
}
response = requests.post('https://api.particle.io/oauth/token', data=data, auth=( Config.PARTICLE_CLIENTID, Config.PARTICLE_CLIENTSECRET))
dictFromServer = response.json()
print(dictFromServer)
Yesterday it worked fine… today I get: {'error': 'invalid_grant', 'error_description': 'User credentials are invalid'}
I am certain my username/PW is correct?
I’m wondering if that update broke something or if I need to re-do my Authentication Client for the product.