We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ed05c commit 9963728Copy full SHA for 9963728
endpoints/endpoints.go
@@ -167,6 +167,12 @@ var StackOverflow = oauth2.Endpoint{
167
TokenURL: "https://stackoverflow.com/oauth/access_token",
168
}
169
170
+// Strava is the endpoint for Strava.
171
+var Strava = oauth2.Endpoint{
172
+ AuthURL: "https://www.strava.com/oauth/authorize",
173
+ TokenURL: "https://www.strava.com/oauth/token",
174
+}
175
+
176
// Twitch is the endpoint for Twitch.
177
var Twitch = oauth2.Endpoint{
178
AuthURL: "https://id.twitch.tv/oauth2/authorize",
0 commit comments