Skip to main content

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

Hey Straver123,


Thanks for the post. Are you still experiencing this issue? You can always refer to Strava's authentication doc.


 


Reply