-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add Revoke Refresh Token endpoint #170
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
from .base import AuthenticationBase | ||
|
||
|
||
class RevokeToken(AuthenticationBase): | ||
|
||
"""Revoke Refresh Token endpoint | ||
|
||
Args: | ||
domain (str): Your auth0 domain (e.g: username.auth0.com) | ||
""" | ||
|
||
def revoke_refresh_token(self, client_id, token, client_secret=None): | ||
"""Revokes a Refresh Token if it has been compromised | ||
|
||
Each revocation request invalidates not only the specific token, but all other tokens | ||
based on the same authorization grant. This means that all Refresh Tokens that have | ||
been issued for the same user, application, and audience will be revoked. | ||
|
||
Args: | ||
client_id (str): The Client ID for your Application | ||
|
||
token (str): The Refresh Token you want to revoke | ||
|
||
client_secret (str, optional): The Client Secret for your Application. | ||
Required for confidential applications. | ||
See: https://auth0.com/docs/applications/application-types#confidential-applications | ||
|
||
See: https://auth0.com/docs/api/authentication#refresh-token | ||
""" | ||
body = { | ||
'client_id': client_id, | ||
'token': token, | ||
'client_secret': client_secret | ||
} | ||
|
||
return self.post( | ||
'https://{}/oauth/revoke'.format(self.domain), data=body) |
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,38 @@ | ||
import unittest | ||
import mock | ||
from ...authentication.revoke_token import RevokeToken | ||
|
||
|
||
class TestRevokeToken(unittest.TestCase): | ||
|
||
@mock.patch('auth0.v3.authentication.revoke_token.RevokeToken.post') | ||
def test_revoke_refresh_token(self, mock_post): | ||
|
||
a = RevokeToken('my.domain.com') | ||
|
||
# regular apps | ||
a.revoke_refresh_token(client_id='cid', | ||
token='tkn') | ||
|
||
args, kwargs = mock_post.call_args | ||
|
||
self.assertEqual(args[0], 'https://my.domain.com/oauth/revoke') | ||
self.assertEqual(kwargs['data'], { | ||
'client_id': 'cid', | ||
'token': 'tkn', | ||
'client_secret': None | ||
}) | ||
|
||
# confidential apps | ||
a.revoke_refresh_token(client_id='cid', | ||
token='tkn', | ||
client_secret='sh!') | ||
|
||
args, kwargs = mock_post.call_args | ||
|
||
self.assertEqual(args[0], 'https://my.domain.com/oauth/revoke') | ||
self.assertEqual(kwargs['data'], { | ||
'client_id': 'cid', | ||
'token': 'tkn', | ||
'client_secret': 'sh!' | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is confusing ... what is a "confidential application?" This doesn't tell me much about when I should be using this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's explained like that in the api explorer linked. I'll add a more explicit link