From a3b37aecafca7fd248c55129ae016461a4e94ae8 Mon Sep 17 00:00:00 2001 From: Benjamin Hsieh Date: Thu, 17 May 2018 15:25:08 -0700 Subject: [PATCH] twitch: Update APIs --- twitch/twitch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twitch/twitch.go b/twitch/twitch.go index 8c5f06a..0838e7c 100644 --- a/twitch/twitch.go +++ b/twitch/twitch.go @@ -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", }