Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It's very hard to find, but documented in the google api documentation.</p> <h3>Google:</h3> <p><a href="http://developers.google.com/identity/protocols/OAuth2WebServer" rel="noreferrer">https://developers.google.com/identity/protocols/OAuth2WebServer#tokenrevoke</a> </p> <blockquote> <p>An application can programmatically revoke its own access. This type of revocation is important in instances where a user unsubscribes or removes an application, in which an API request to remove the permissions granted to the application should be a part of the removal process.</p> <p>To programmatically revoke a token, your application sends a request to <a href="https://accounts.google.com/o/oauth2/revoke" rel="noreferrer">https://accounts.google.com/o/oauth2/revoke</a> and includes the token as a parameter:</p> </blockquote> <p><code>curl https://accounts.google.com/o/oauth2/revoke?token={token}</code></p> <blockquote> <p>The specified token can be an access token or a refresh token. If the token is an access token and it has a corresponding refresh token, the refresh token is also revoked.</p> <p>If the revocation succeeds, the response's status code is 200. If an error occurs, the response's status code is 400 and the response also contains an error code.</p> </blockquote> <h3>Other Services:</h3> <ul> <li>Facebook: <a href="https://developers.facebook.com/docs/facebook-login/permissions/#revokelogin" rel="noreferrer">https://developers.facebook.com/docs/facebook-login/permissions/#revokelogin</a> </li> <li>Twitter: <a href="https://dev.twitter.com/docs/api/1.1/post/oauth2/invalidate_token" rel="noreferrer">https://dev.twitter.com/docs/api/1.1/post/oauth2/invalidate_token</a></li> <li>SE: <a href="http://api.stackexchange.com/docs/application-de-authenticate">http://api.stackexchange.com/docs/application-de-authenticate</a></li> <li>Github: <a href="http://developer.github.com/v3/oauth/#delete-an-authorization" rel="noreferrer">http://developer.github.com/v3/oauth/#delete-an-authorization</a></li> </ul> <p>Twitter: It's not possible to tell if you can revoke all permissions with <code>invalidate_token</code>. Other options aren't available.</p> <p>All services implementing OAuth 2.0 <strong>should</strong> provide one <strong>revoke</strong> possibility. Typically, it follows the <code>google-pattern</code> <code>https://..../oauth2/revoke</code></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload