OIDC implicit code flow problem

curl -H ‘Accept: application/vnd.twitchtv.v5+json’
-X GET ‘https://api.twitch.tv/kraken/oauth2/authorize?response_type=token+id_token&client_id=MYCLIENTID&redirect_uri=MYSERVERIP&scope=clips:edit

OUTPUT :

and my server uri is
http://MYSERVERIP/?error=redirect_mismatch&error_description=Parameter+redirect_uri+does+not+match+registered+URI

Seems ok to me here:

But with a working ClientID that should take you to the TwitchLogin page.

With the error Parameter+redirect_uri+does+not+match+registered+URI you need to check the passed RedirectURI to authorise is the right URI that matches what you put in the Client Settings

Most commonly people forget the / on the end

Make sure that

image

Matches what you are passing in the redirect_uri parameter

umm… very Thanks ur support.

Very Thanks.
now i get http://MYSERVERIP/#access_token=ACCESSTOKEN&scope=clips%3Aedit

Yup thats correct with implicit code auth

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