Skip to content

Instantly share code, notes, and snippets.

@stevedep

stevedep/getdata Secret

Created April 25, 2022 08:25
def get_activitydata(idpar):
url = "https://www.strava.com/api/v3/activities/" + str(idpar) + "/streams/time"
r = requests.get(url + '?access_token=' + access_token + '&types=["time"]&key_by_type=true')
r = r.json()
return r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment