-
Notifications
You must be signed in to change notification settings - Fork 171
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
Conversation
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.
Nothing holding back approval here but a few things ... will approve, make any changes you see fit.
been issued for the same user, application, and audience will be revoked. | ||
|
||
Args: | ||
client_id (str): your application's client Id |
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.
Consider:
The Client ID for your Application
Args: | ||
client_id (str): your application's client Id | ||
|
||
token (str): the Refresh Token you want to revoke |
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.
"The ..."
|
||
token (str): the Refresh Token you want to revoke | ||
|
||
client_secret (str, optional): Your application's Client Secret. |
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.
Consider:
The Client Secret for your Application
token (str): the Refresh Token you want to revoke | ||
|
||
client_secret (str, optional): Your application's Client Secret. | ||
Required for confidential applications. |
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
Closes #115