I am having trouble accessing all athlete activities (my own) from the url in Strava's api documentation.
I am able to get my own year-to-date stats:
https://www.strava.com/api/v3/athletes/XXXXXXXX/stats?access_token=ACCESSTOKEN
I am able to get my profile information:
https://www.strava.com/api/v3/athlete?access_token=ACCESSTOKEN
But when I try to get all my activities:
https://www.strava.com/api/v3/athlete/activities?access_token=ACCESSTOKEN
I receive the following error:
{
"message": "Authorization Error",
"errors": [
{
"resource": "AccessToken",
"field": "activity:read_permission",
"code": "missing"
}
]
}
Do I need to include my client ID or secret key somewhere in the url? I am logged in and so do not understand why I cannot access my own information. Please adviseπ