Hi,
I am trying to revoke access of my app for a user by invalidating the user access token (i.e. the user has previously performed a successful authorization of the app). I was hoping for this to do the trick:
https://developer.twitter.com/en/docs/basics/authentication/api-reference/invalidate_access_token.html
but the URL: https://api.twitter.com/oauth/invalidate_token does not exist! (404)
Has the above URL been moved or removed? If the latter, is there a different way to revoke user access of my app? Is requesting the user to revoke the app the only way?
I do understand that unsubscribing the app from the user’s activity will stop events from coming in to the webhook URL, but I’m trying to get the user -> app association removed completely from Twitter (so the user doesn’t show up again next time asking Twitter for all app users).
Thanks!