Hi all.
Using a get on https://www.strava.com/api/v3/activities/, I get a list of activities.
I realised that each activity in the json response is a summary of the activities, because "resource_state" : 2,
So I tried to tried to get the detailed representation.
Which you can get using /activities/{id}.
But for that, you need the ID.
OF course, I can get the ID from the first query, and then re-query using the ID, but I'm wondering if there is not a simpler way.
For instance a way to get a list of ID directly, and then using that list to get the detailled representation.
Thanks for any hint!