Hi, I am writing an application in which I would like to record activity in Strava.
I am running such url
var authUrl =
"https://www.strava.com/oauth/authorize" +
$"?client_id={_clientId}" +
"&response_type=code" +
$"&redirect_uri={Uri.EscapeDataString(redirectUri)}" +
"&approval_prompt=force" +
"&scope=activity:read_all,activity:write";
authorizes with my Strava account and gets a new token along with this scop scope=read,activity:write,activity:read_all
Then performs a POST of this code to https://www.strava.com/oauth/token
All operations go through without error but after refreshing the API mouthpiece I still see scope:read and as I try to save the activity I get an error