Disables the access token used to authenticate the call. If there is a corresponding refresh token for the access token, this disables that refresh token, as well as any other access tokens for that refresh token. :rtype: None
(self)
| 97 | return r |
| 98 | |
| 99 | def auth_token_revoke(self): |
| 100 | """ |
| 101 | Disables the access token used to authenticate the call. If there is a |
| 102 | corresponding refresh token for the access token, this disables that |
| 103 | refresh token, as well as any other access tokens for that refresh |
| 104 | token. |
| 105 | |
| 106 | :rtype: None |
| 107 | """ |
| 108 | arg = None |
| 109 | r = self.request( |
| 110 | auth.token_revoke, |
| 111 | 'auth', |
| 112 | arg, |
| 113 | None, |
| 114 | ) |
| 115 | return None |
| 116 | |
| 117 | # ------------------------------------------ |
| 118 | # Routes in check namespace |