HI guys!
I'm getting 403 on address api request for some users, and working great on others (same code).
Python 3
URL = f"https://api.amazonalexa.com/v1/devices/{device_id}/settings/address" HEADER = { 'Accept': 'application/json', 'Authorization': f'Bearer {access_token}' } response = requests.get(URL, headers=HEADER)
Any idea why ?
Thanks!