Magento 2 API – How to Revoke an Authorization Token

apimagento2oauth

Per the Magento 2 developer documentation

When you make web API calls, you supply this token in the Authorization request header with the Bearer HTTP authorization scheme to prove your identity. The token never expires but it can be revoked.

As a system owner — how do I revoke an authorization token? Is it as simple as setting the revoked column in the oauth_token to 1? Or do I need to do more.

Irrespective of that, is there a GUI for doing this anywhere? Or do I need to manually edit the database myself?

Best Answer

It is actually just the Force Sign-In on the User Info section of the users page.