Skip to content

Commit

Permalink
twitch: update to new endpoint
Browse files Browse the repository at this point in the history
Update the OAuth APIs for Twitch: https://discuss.dev.twitch.tv/t/oauth-kraken-migration/14606

Change-Id: I6911d0ba6db7ad07e7ddd277713ec72cc3e00ab5
GitHub-Last-Rev: a3b37ae
GitHub-Pull-Request: #291
Reviewed-on: https://go-review.googlesource.com/113655
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
tanookiben authored and bradfitz committed May 21, 2018
1 parent 6e81df8 commit dd5f5d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twitch/twitch.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ import (
// For more information see:
// https://dev.twitch.tv/docs/authentication
var Endpoint = oauth2.Endpoint{
AuthURL: "https://api.twitch.tv/kraken/oauth2/authorize",
TokenURL: "https://api.twitch.tv/kraken/oauth2/token",
AuthURL: "https://id.twitch.tv/oauth2/authorize",
TokenURL: "https://id.twitch.tv/oauth2/token",
}

0 comments on commit dd5f5d8

Please sign in to comment.