How do I get this working? I get a 401 error
Solved
Can't authenticate first login request
import requests
def get_strava_profile(access_token😞
headers = {"Authorization": f"Bearer {access_token}"}
response = requests.get(url, headers=headers)
if response.status_code == 200:
return response.json()
else:
print(f"Error: {response.status_code}")
return None
if __name__ == "__main__":
access_token = "YOURACCESSTOKEN"
profile_data = get_strava_profile(access_token)
if profile_data:
print(profile_data)
get_strava_profile('')
How do I get this working? I get a 401 error
How do I get this working? I get a 401 error
Best answer by SkippyVasquez
Hey Straver123,
Thanks for the post. Are you still experiencing this issue? You can always refer to Strava's authentication doc.
Reply
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.