Hi all.
I have a django app that connects to Strava through oauth.
When I set the authorisation up, a while ago, I used the defaults that are detailled here , which means that the scope of my access token is read.
At that time, I did not know exactly what I would need, so it was fine.
But as my app progressed, I realised that the read scope prevented me from getting any ride data that falls under my privacy settings.
So I wanted to update the scope to read_all and to add activity:read_all also, to get all the data.
But I have not been successful at all at modifying the scope of my access token.
I' ve tried to create another one (including following https://developers.strava.com/docs/authentication/ ) byt when I check on my settings/api page, the scope is still read.
Strangely enough, I now have two tokens that I can use to connect, but the one with extended scope works only when I curl, not when I use django.
I have run out of ideas on how to either delete my current access token and create a new one, or to update the scope of the existing one, so any help would be appreciated.
Thank you.