HI, thanks!
I'm sending a GET request.
Example:
curl -G
https://www.strava.com/api/v3/uploads/6361234567 -H "Authorization: Bearer 1a2b3c4d5e6f"
{"id":6361234567,"id_str":"6361234567","external_id":"12345.gpx","error":null,"status":"Your activity is ready.","activity_id":5985432101}
I tried this after that:
curl -G "
https://www.strava.com/api/v3/activities/(6361234567 or 5985432101)/streams/?keys=latlng,altitude,time&key_by_type=true" -H "Authorization: Bearer 1a2b3c4d5e6f"
Result: {"message":"Resource Not Found","errors":[{"resource":"Activity","field":"","code":"not found"}]}
"external_id" is "12345.gpx" - but this is not integer and Strava APi says: "resource":"resource","field":"path","code":"invalid"
I'm doing some mistake somewhere but I don't know where.