Trying to get a Oath token for a chrome extension

I am trying to make a chrome extension to notify people when someone starts broadcasting a playlist (I thought this would be something cool&interesting to make) and one key thing I need for this to work is getting a oath token so I can get a list of people who someone follows who are broadcasting a playlist. But one problem I am running into is the redirect URL for the authorization for the app. When I try to authorize myself it sends me to the redirect URL I provided but it gives me an error saying that it was missing the redirect URL for the authorization. If someone could help me that would be cool.

You need to include the redirect URL in the authorization link. See documentation.

https://api.twitch.tv/kraken/oauth2/authorize
    ?response_type=code
    &client_id=[your client ID]
    &redirect_uri=[your registered redirect URI]
    &scope=[space separated list of scopes]
    &state=[your provided unique token]

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