Skip to content

Commit

Permalink
Merge pull request #778 from josephglanville/fix/twitch_oauth_scopes
Browse files Browse the repository at this point in the history
Add user_subscriptions scope to Twitch OAuth request
  • Loading branch information
chrippa committed Mar 7, 2015
2 parents 4e46754 + d554008 commit 2dee82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/livestreamer_cli/main.py
Expand Up @@ -528,7 +528,7 @@ def authenticate_twitch_oauth():
redirect_uri = "http://livestreamer.tanuki.se/en/develop/twitch_oauth.html"
url = ("https://api.twitch.tv/kraken/oauth2/authorize/"
"?response_type=token&client_id={0}&redirect_uri="
"{1}&scope=user_read").format(client_id, redirect_uri)
"{1}&scope=user_read+user_subscriptions").format(client_id, redirect_uri)

console.msg("Attempting to open a browser to let you authenticate "
"Livestreamer with Twitch")
Expand Down

0 comments on commit 2dee82c

Please sign in to comment.