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
1
vote
1 answer

Strava API - How set activity type for Uploaded Activity?

I want to upload my gpx files via Strava API. I read documentation and there is no mention about set Activity type and privacy at Upload endpoint and no API for editing activities. What can I do?
Dmitry Sokolov
  • 1,303
  • 1
  • 17
  • 29
1
vote
1 answer

NodeJS: Not able to find the npm package for strava_api_v3

I'm working on the starva to get the athletes details. While referring their site they have mentioned to install the package "strava_api_v3" but it was not available in the npm package. Kindly share the link (or) npm installation process for the…
1
vote
0 answers

Strava REST API | swagger-client does not return full DetailedAthelete reperesentation

I'm trying to build application around Strava.com REST API using swagger-client. I've successfully got access token and run API calls. What makes a problem is a API call getLoggedInAthlete which (according to documentation) is supposed to return an…
Zepp
  • 31
  • 1
1
vote
0 answers

Get other athletes in a group activity?

I want to figure out which people I run with the most from Strava. More concretely: I want to get a list of all of Athlete A's activities, but I also want to know for each activity which other Athletes were involved. e.g. Is it possible with the…
Arash Outadi
  • 446
  • 7
  • 16
1
vote
1 answer

GET Request for GPX "Resource not found" Strava API

Following Stravas API instructions Export Route GPX (getRouteAsGPX), we do not get the gpx file. The code we used is: import requests import urllib3 import gpxpy urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) auth_url =…
Alejandro
  • 11
  • 2
1
vote
0 answers

Authentication strava with react-native-app-auth?

In my projects, i have integrated the packages "react-native-app-auth" with strava to authenticate. const openStravaApp = async () => { const config = { clientId: '62069', clientSecret: '795dad2fc3d5f3ec9277b6a84f1f49cd7dcb324e', …
kalipts
  • 1,097
  • 1
  • 9
  • 21
1
vote
1 answer

How can I upload Kayaking or Rowing data via a TCX formatted file to Strava?

I'm recording workouts with a Flutter based mobile application. I can successfully upload bike workouts. https://github.com/BirdyF/strava_flutter/blob/master/lib/Models/activity.dart#L916 lists a pretty wide variety of sports. However I already…
Csaba Toth
  • 10,021
  • 5
  • 75
  • 121
1
vote
0 answers

Retrieve $_GET data from PHP cURL request (Strava Webhook)

I have spent countless hours trying to figure this out. I'm trying to integrate Strava Webhooks. This is a PHP based application that is going to be a WordPress plugin. The crux of the issue as I see it is that I'm sending data via a cURL request,…
Erik
  • 65
  • 2
  • 6
1
vote
2 answers

I am using strava login in my ios application.After authentication of strava I am not able to get back to my application

I have used this library. https://github.com/mpclarkson/StravaSwift My callback url redirects me to any browser link but does not redirect me to my app.How can I redirect back to my app after authentication from strava?
oshin saki
  • 11
  • 1
1
vote
1 answer

Converting textdata from strava/zapier to use in calculations

I have a zap @ Zapier which automatically imports my Strava activity to Google Sheets. This works fine, but it inputs everything as text. I want to be able to calculate my running (accumulated) average pace, but it is not possible with the data as…
1
vote
2 answers

Make app to get strava data, don't get how to get client_id and client_secret when the user accept to connect to strava

I am trying to make an app that get strava user info (info, activities, etc...). I read the instruction of strava doc : https://developers.strava.com/docs/authentication/ I get that on my app, I should ask the user to connect to strava using…
Yann92
  • 383
  • 4
  • 15
1
vote
1 answer

How to get access token Strava Api with PHP

public function auth_callback() { if ($this->input->get("code") != null) { $this->Strava_model->UpdateProfileStravaToken($this->input->get("code"),$this->session->userdata("athlete_id")); $url =…
1
vote
2 answers

Problem creating a Strava webhook subscription using Google Apps Script

EDIT 2 - I have now provided my own answer to the issue - any further thoughts or inputs would still be appreciated EDIT 1 - POTENTIAL RELEVANT INFORMATION: I've found this footnote at the bottom of the Content Service documentation page that…
James Hearn
  • 61
  • 10
1
vote
0 answers

ValueError: too many values to unpack (expected 2) while uploading multiple files

I was trying to upload multiple files by Strava API. While running the uploadFitActivity() method, it caused ValueError: too many values to unpack (expected 2) I believe this exception is raised by my uploadFitActivity() method, maybe related to f =…
livemyaerodream
  • 890
  • 6
  • 19
1
vote
2 answers

ASWebAuthenticationSession completionHandler not called on Strava Authentication

ASWebAuthenticationSession completionHandler not called on clicking Authorize button in Strava Authentication. below given is my code.(used Using ASWebAuthenticationSession to connect to Strava account fails this link to implement.) import…
Ben Rockey
  • 920
  • 6
  • 23
1 2
3
8 9