You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The redirect URL is: https://www.strava.com/oauth/authorize?client_id=...&redirect_uri=http%3A%2F%2Flocalhost%3A4000%2Fauth%2Fstrava%2Fcallback&response_type=code&scope=activity%3Aread+activity%3Aread_all&state=nY0GtwcCjYq1WWZ4MPlfbHM2_at-oB9Q_InKCo1WdBbav2pVs96cF9vLxf8wg28yC5SKrkGcnLIzSG4bKkzZdg%3D%3D
If you use the workaround config, it works.
the scope query value is scope=activity%3Aread%2Cactivity%3Aread_all (the difference is character + vs %2C (decoded string of ,))
Code:
Reproduce:
go run main.go
and open http://localhost:4000https://www.strava.com/oauth/authorize?client_id=...&redirect_uri=http%3A%2F%2Flocalhost%3A4000%2Fauth%2Fstrava%2Fcallback&response_type=code&scope=activity%3Aread+activity%3Aread_all&state=nY0GtwcCjYq1WWZ4MPlfbHM2_at-oB9Q_InKCo1WdBbav2pVs96cF9vLxf8wg28yC5SKrkGcnLIzSG4bKkzZdg%3D%3D
scope=activity%3Aread+activity%3Aread_all
the scope query value is
scope=activity%3Aread%2Cactivity%3Aread_all
(the difference is character+
vs%2C
(decoded string of,
))goth/providers/strava/strava.go
Lines 159 to 161 in 9dc8905
should be
The text was updated successfully, but these errors were encountered: