When I try to get all the activities of the currently authenticated user, I have no problem with the vanilla endpoint with no parameters, ie
https://www.strava.com/api/v3/athlete/activities
returns a list of 30 of the authenticated athlete’s activities.
However, if I try to use any of the parameters noted in the documentation, such as
https://www.strava.com/api/v3/athlete/activities?page=1
then I receive the following error:
HTTPError: 403 Client Error: Forbidden for url: https://www.strava.com/api/v3/athlete/activities
What am I doing wrong here? I am using the requests library in python, if that is helpful.