6 - Get ALL your Strava Activities with Python - Strava API for Beginners

Поделиться
HTML-код
  • Опубликовано: 13 сен 2024
  • Learn how to get ALL of your Strava activities with Python. 200 is the max number of activities per request, learn how to make multiple requests to get all of your activities.
    Here is the script - github.com/fra...
    _________________________________________________________________________
    GitHub - github.com/fra...
    Instagram - / franchyze923
    Twitter - / franchyze923
    Discord - / discord

Комментарии • 15

  • @crossoldwasp39
    @crossoldwasp39 11 месяцев назад +1

    Loved this series of vids, thank you!

  • @morgans4328
    @morgans4328 Год назад

    Hey, thanks for the update ! clear and useful ! Struggling to Get Activity Streams (getActivityStreams) with Strava API using your framework, any idea how to adapt ?

  • @andrewrrandall
    @andrewrrandall 6 месяцев назад

    sick thank you sir!

  • @jezphipps142
    @jezphipps142 Год назад

    Thanks for the really useful info.

  • @janettema7353
    @janettema7353 Год назад +1

    Hey!
    Nice video and code!
    I would like to know if the code still works on your side? I am getting a Authorization Error when running the code with the following error msg
    "{'message': 'Authorization Error', 'errors': [{'resource': 'AccessToken', 'field': 'activity:read_permission', 'code': 'missing'}]}"
    Do you have any clue why?

    • @DigiMim
      @DigiMim Год назад

      I get the exact same.

    • @roblightowler2661
      @roblightowler2661 11 месяцев назад

      Me too

    • @roblightowler2661
      @roblightowler2661 11 месяцев назад

      @franchyze923 any clues how to fix this? I believe it is to do with the permission still at read

    • @Oscarrudnas
      @Oscarrudnas 10 месяцев назад

      @@roblightowler2661 earlier videos in the series explained how to do it

    • @robertedwards4401
      @robertedwards4401 3 месяца назад

      you have to add a scope to the OAuth section, the scopes are listed on Strava's API documentation. One example is "profile:read_all"

  • @FernandoSanchezMonge
    @FernandoSanchezMonge 10 месяцев назад

    Hi! Thanks for your videos, they've been super useful! I'm getting an Attribute Error (AttributeError: 'dict' object has no attribute 'extend') when extending the list, which seems to be interpreted as a dict instead. It's weird because it wasn't happening at first but now it happens every time. Any ideas? Thank you!

    • @Oscarrudnas
      @Oscarrudnas 10 месяцев назад +1

      you probably didn't authenticate correctly. Did the same thing myself :) Earlier videos explained how to auhtenticate.

    • @FernandoSanchezMonge
      @FernandoSanchezMonge 10 месяцев назад

      @@Oscarrudnas you are right haha, just fixed it a few days ago. Thanks for the response!