We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Twitch API OAuth 2.0 authorization code flow, I get from https://api.twitch.tv/kraken/oauth2/authorize the following token:
https://api.twitch.tv/kraken/oauth2/authorize
{ "access_token": "xxxxxxxx", "refresh_token": "yyyyyyyyyy", "scope": ["user_read"], "expires_in": 13293 }
that is invalid, because the token_type field is missing. According to OAuth 2.0 RFC https://tools.ietf.org/html/rfc6749#section-5.1, the the token_type field is required.
token_type
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using Twitch API OAuth 2.0 authorization code flow, I get from
https://api.twitch.tv/kraken/oauth2/authorize
the following token:that is invalid, because the
token_type
field is missing. According to OAuth 2.0 RFC https://tools.ietf.org/html/rfc6749#section-5.1, the thetoken_type
field is required.The text was updated successfully, but these errors were encountered: