MCPcopy Index your code
hub / github.com/dropbox/dropbox-sdk-python / auth_token_revoke

Method auth_token_revoke

dropbox/base.py:99–115  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected