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
0
votes
2 answers

Strava api: segment leaderboard two people with same name

I am 16, creating a website that shows all Strava's segment leaderboard, but Strava only gives you the name as "Paul M." for example. when fetching the API there was two Paul M's so there was no way to distinguish between these to people and put…
0
votes
0 answers

Import swagger_client into python project to run strava API

I'm trying to do some basic programming in Python, I want to be able to pull, post & edit my own data from strava. I'm pretty new to programming, I'm using this as my 'capstone' project to develop my skills. See…
0
votes
1 answer

Strava API Python - AttributeError object has no attribute

For those of you who have experience with Strava API - I used the documentation on their developer site: https://developers.strava.com/docs/reference/#api-Activities-getLoggedInAthleteActivities However, copying their code over I get an attribute…
ohoh7171
  • 186
  • 2
  • 2
  • 14
0
votes
2 answers

How to update Strava activities using API in python?

I'm trying to update my Strava activities using python. I'm using the requests module to send GET, POST, and PUT requests. I am trying to update my activity using put but I keep on getting this error {'errors': [{'code': 'not found', 'field': '',…
Sheev
  • 1
  • 1
0
votes
1 answer

Can't use strava API in C#

From strava reference https://developers.strava.com/docs/reference/#api-Clubs-getClubMembersById I'm trying to use strava API in C#. I installed Strava.NET v3.4.4 on Concole App (.NET Framework 4.6.1 on Microsoft Visual Studio Community 2019) as…
akkapolk
  • 554
  • 8
  • 33
0
votes
1 answer

Parse strava gpx with R

I need to parse strava gpx file, and I'm using the library marcusvolz/strava that works fine to parse coords, ele, time but the problem is when you try to parse extensions path changing the function. I have changed the function including: hr <-…
0
votes
1 answer

How to access strava API?

I am trying to access strava's API on arduino esp8266. My http.GET() using the ESP8266HTTPClient.h header is returning -1 which means that it fails to connect at some point (HTTPC_ERROR_CONNECTION_REFUSED). I am able to access other sites but am…
Brian Daneshgar
  • 343
  • 3
  • 20
0
votes
1 answer

How to "turn" a page when asking for athlete activities in NodeJs?

In the Strava API, we can get the list Athlete Activities. However, we can only get 200 activities by page. I wonder how to get the other activities on the other pages? I play with the parameters. When I put the per_page parameter to 1. I only get…
0
votes
0 answers

How to user swagger-codegen to build a Strava library for ASP.NET Core 2.1?

I'm trying to use swagger-codegen to build a DLL of Strava that can be used in an ASP.NET Core 2.1 server application. Attempt 1 - Following instructions on https://developers.strava.com/docs/#client-code brew install swagger-codegen@2…
sshevlyagin
  • 1,310
  • 2
  • 16
  • 26
0
votes
1 answer

Strava API oAuth Process Token Exchange page can't be reached

While I am able to receive the initial Strava oAuth Code through the authorize? process on the Strava page, I am struggling with the token exchange process described here: https://developers.strava.com/docs/authentication/ Code below does only…
Marc
  • 13
  • 3
0
votes
0 answers

Strava API Request Issues in Swift

I'm working to access Strava api endpoints with my iOS Swift 5 app using Alamofire. I'm able to authenticate and get an OAuth token, but when I try to make GET requests, an error is returned saying: { errors = ( { code =…
0
votes
1 answer

Strava reconnecting issue

I have connect with strava and got data via Socialite package in PHP Laravel. And extract data without no issues. But recently i can't connect to the strava again. It show ans exception. $stravaUser = Socialite::driver('strava')->user(); // this…
0
votes
1 answer

aiohttp: multiple requests to same URL return authentication error, but the URL is correct

I am using the below code to make 599 asynchronous requests to Strava API. For some reason the response I get for each of them is {"message":"Authorization Error","errors":[{"resource":"Application","field":"","code":"invalid"}]} This is the…
barciewicz
  • 3,511
  • 6
  • 32
  • 72
0
votes
0 answers

Strava API: download segment efforts fast, possibly with one request

Provided I have a list of Strava activity IDs (around 800), what would be the fastest way to get segment efforts for each of those activities? Per my understanding of Strava API documentation, currently the only endpoint to include segment efforts…
barciewicz
  • 3,511
  • 6
  • 32
  • 72
0
votes
2 answers

strava login via httpwebrequest failed

Hi I'm trying to login via https://www.strava.com/session with HttpWebrequest but it doesn't log me in. It gives me an response of 302 which is good but it never redirect me to https://www.strava.com/dashboard. this is the code that I'm…
Codiq
  • 15
  • 7
1 2 3
8
9