-
-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update OAuth scopes - user:manage:blocked_users - user:read:blocked_users - user:read:follows - user:read:subscriptions - chat:edit - chat:read - whispers:edit - whispers:read - validate OAuth access token via query-less twitch-user response - add state parameter to OAuth URL and validate state response - validate token_type OAuth response - store scopes required by the application on the Auth record and reject logins if the stored scopes don't match the required ones instead of comparing scopes from an API response (unavailable now) - update tests
- Loading branch information
1 parent
0f5d5e0
commit 049cd63
Showing
5 changed files
with
180 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
request: | ||
method: "GET" | ||
url: "https://api.twitch.tv/helix/users" | ||
query: {} | ||
response: | ||
data: | ||
- id: "1337" | ||
login: "user" | ||
display_name: "User" |
Oops, something went wrong.