1

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?

TResponse
  • 3,940
  • 7
  • 43
  • 63

1 Answers1

0

Using the Get Activity By Id endpoint you get back a DetailedActivity

This includes a PhotosSummary object which contains the photos that are currently available through the Stava API v3.

TResponse
  • 3,940
  • 7
  • 43
  • 63
  • I am getting `PhotosSummary` objects, but they have "preview" urls, which if visited seem to do nothing but load a grey arrow: ``` #:0> photo = _.first => {"unique_id"=>"bfb94", "athlete_id"=>3808, "activity_id"=>917, [...] "created_at_local"=>2023-06-03 11:47:29 UTC, "urls"=>{"1800"=>"https://d3nn82uaxijpm6.cloudfront.net/assets/media/placeholder-photo@4x-13b0b44cfa828acc8b95d8dc4b8157d87666aa1ea8ef814c6ec36cd542d2b756.png"}, "sizes"=>{"1800"=>[1372, 1000]}} ``` – Josh_Thompson Jun 08 '23 at 05:43
  • Interesting, I'm able to get photos. Do you think it might be a permission setting on your activities? Ill take a look aver the weekend and get back to you. – TResponse Jun 08 '23 at 21:00
  • 1
    I looked through my Strava Privacy settings, and found the settings that would be at root, and they all seemed to be configured correctly. Hm. – Josh_Thompson Jun 10 '23 at 04:40