Skip to content

Commit

Permalink
[oauth] update scope for reddit tokens (#428)
Browse files Browse the repository at this point in the history
'/user/<username>/...' requires the 'history' scope to be accessible
(https://www.reddit.com/dev/api/#GET_user_{username}_{where})
  • Loading branch information
mikf committed Sep 27, 2019
1 parent 46ba173 commit 803d8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def items(self):
"",
"https://www.reddit.com/api/v1/authorize",
"https://www.reddit.com/api/v1/access_token",
scope="read",
scope="read history",
)


Expand Down

0 comments on commit 803d8f8

Please sign in to comment.