Helix and oauth

i have GOLANG code to redirect user to twitch oauth page

		http.Redirect(w, r, "https://api.twitch.tv/kraken/oauth2/authorize"+
			"?response_type=code"+
			"&client_id="+repos.Config.ClientID+
			"&redirect_uri="+repos.Config.AppOauthURL+
			"&scope=user_subscriptions+user_read", http.StatusFound)

When i am changing “kraken” to “helix” it says

{
"error": "Not Found",
"status": 404,
"message": ""
}

What is proper usage of helix in that case?

The new URL is https://id.twitch.tv/oauth2/authorize which will support both Kraken and Helix.

See OAuth Kraken Migration for more info

1 Like

ah sorry, was oriented on documents, lost that link.

Thank you

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.