Revoke App Authentication
How to revoke an app's authentication from the app side.
You can call the following endpoint to revoke an access token that you have received.
You should do this whenever the user uninstalls the app on your side to let Fera know that the access token you received is no longer needed.
curl -F client_id=YOUR_CLIENT_ID \
-F client_secret=YOUR_CLIENT_SECRET \
-F token=ACCESS_TOKEN \
-X POST https://app.fera.ai/oauth/revoke
Updated over 2 years ago