Questions tagged [strava]

Strava tag should be used with questions related to strava api integrations

Strava connect millions of runners and cyclists through the sports they love.

The Strava V3 API is a publicly available interface that allows developers to access Strava data.

Links:

131 questions
30
votes
3 answers

Problem with access token in Strava API v3 GET all athlete activities

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…
mhanley00
  • 639
  • 1
  • 7
  • 11
15
votes
4 answers

Strava API - How to get route image

Does anyone know how to get finish route map image after users post their activity on Strava. I have read Strava API document, but I haven't found it yet I use https://strava.github.io/api/v3/activities/:id to get an activity, there is "map" field,…
Phu Sanh
  • 303
  • 3
  • 9
9
votes
1 answer

What do the Strava (GPX) elements mean?

Kia ora, I exported all my GPX files from Strava so I could do some analysis on them and am stuck trying to figure out what type of activity each file is for. My file looks like this, for example, where the element seems to define the…
Finn LeSueur
  • 479
  • 5
  • 18
6
votes
2 answers

Strava api to export GPX file of activity

I am well able to download my GPX file of an activity when logged in to Strava and calling this link: https://www.strava.com/activities/5656012590/export_original I get the original gpx. It looks as I need it. Is there a v3 api way? I would like to…
Matthias
  • 1,200
  • 2
  • 13
  • 33
5
votes
1 answer

Problems with __future__ and swagger_client in Python

The Strava API documentation gives the following sample code which I copied and entered my own access token and club ID: from __future__ import print_statement import time import swagger_client from swagger_client.rest import ApiException from…
runnerpaul
  • 5,942
  • 8
  • 49
  • 118
4
votes
1 answer

Authorisation callback issue in strava api for iOS

I am integrating strava api's in my app. I need help regarding the authorization callback domain i.e. required during the api registration so that after the authorization the device browser opens the app again for further usage. When I try to submit…
Anshul Bhatheja
  • 673
  • 3
  • 21
3
votes
1 answer

Strava Webhook API is not sending all events

I created an app on Strava. Authorized my app on my account with read,activity:read,activity:read_all,read_all permissions. I didn't want polling their API for activities as they recommend webhooks for that. So I created a webhook subscription and…
Sinan Cetinkaya
  • 427
  • 5
  • 18
3
votes
2 answers

Error trying to authenticate a web application with Oauth2 and Strava using Spring Boot

I’m trying to use Strava to authenticate customers that want to use my web application using Spring Boot, and I’m stuck in this error: .s.o.c.w.OAuth2LoginAuthenticationFilter : Authentication…
3
votes
1 answer

Python **kwargs: unexpected keyword argument

Hy, I am working with the Python library StravaIO from here I am trying to get all the segments inside an activity. And for that, I am using the get_activity_by_id function. For that function to return the effort list, I needed to include the…
macarrony00
  • 43
  • 10
3
votes
1 answer

Strava API returning 404 at intitial authentication

i am messing a bit with the Strava API, but when i want to perfrom the initial authentication, i always receive a 404 error. I am rather new to this, so any help would be very appreciated. @Override public void onClick(View…
Kaspaar
  • 166
  • 2
  • 4
  • 20
3
votes
1 answer

swagger_client in python trying to use Strava API

I am trying to use the Stava API in a Flask project. I have seen the following stackoverflow and installed swagger_client swagger-codegen generate -i https://developers.strava.com/swagger/swagger.json -l python -o ./StravaPythonClient as per their…
mrpbennett
  • 1,527
  • 15
  • 40
3
votes
1 answer

How can I connect people's STRAVA profiles with my site?

I have an ASP .NET Core MVC website that is for fitness etc. I'm trying to make it so people can connect their accounts on my site with their Strava accounts. I've read and re-read the Strava API documentation and I can't work it out. I know that…
Lewis Cianci
  • 926
  • 1
  • 13
  • 38
3
votes
0 answers

Strava authentication Api Login Issue

I have implemented Strava authentication in my asp application. I am facing issue with call back url. If I am not login into strava account from browser and then try to connect user with strava from my application, Login prompt appears for strava…
Neha Gupta
  • 291
  • 2
  • 18
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…
1
2 3
8 9