Questions tagged [strava-api-v3]

9 questions
2
votes
1 answer

How to Strava oauth without a server?

I have been developing the desktop application on C#. How can I do the oauth process without running a local server? I can't run the local server because I have a running server on the localhost from another application.
Dmitry Sokolov
  • 1,303
  • 1
  • 17
  • 29
2
votes
1 answer

Where to store refresh token using strava api

I am building a website using .net. The plan is to use the strava api to get activity data of the user. Currently the user will need to accept this strava prompt every time he reloads my site: I got the auth flow working but my question is how to…
2
votes
2 answers

Get Strava Activity polyline altitude

I am using the Get Activity ById endpoint from the Strava API whcih returns a ActivityDetail object. I can decode the polyline but it only returns the lat and lng values for each vertex. I decode using: import polyline from…
TResponse
  • 3,940
  • 7
  • 43
  • 63
1
vote
1 answer

Strava API returns null as first value of powerstream - Swift

When trying to use the Strava API with wattages per second I keep running into the problem of the first value always being null instead of a number. struct streamsElement: Decodable { struct Stream: Decodable { let data: [Double]? …
Lucas
  • 23
  • 3
1
vote
0 answers

Add more attribute to available API request with Strava (running app)

I am using add-in API connector in Chrome to request a connection with my Strava account (a running app). My point is to automatically update any new activity of my club members, then show up on a google_sheet link for recording and…
1
vote
1 answer

Strava API - get photos from an activity

I am trying to get Photos from Strava with https://www.strava.com/api/v3/activities/${activityId}/photos?access_token=${res.access_token}`, but there are only thumbnail of these photos. Is there a way to get the full resolution photos somehow?
0
votes
1 answer

using the Strava api, I can get stats but not activities

I'm trying to set up a web page for my sister-in-law to display her strava activities and stats, using my own web page's python code and web page as a template. I can get her stats ok, but I get a 401 error returned when I try to get her activities.…
Ken
  • 27
  • 6
0
votes
0 answers

Swift - (Strava API) Bad Request, Redirect URI Invalid

I am prompting the user to connect to Strava, and when I open the URL, I am given a page with JSON telling me that it was a bad request, and that my redirect uri was invalid. { "message":"Bad Request", "errors":[{ …
0
votes
0 answers

How to upload activity location data on Strava without file uploading

Now I am using strava "https://www.strava.com/api/v3/activities" api for create activity on strava but I am also need to upload activity location data for map but I am not able to upload. I have also use start_latlng and end_latlng parameters in…