Created
February 2, 2013 07:20
Twitter revoke all OAuth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go to settings > applications and paste the following javascript into your browser console or the address bar: | |
javascript:var a=document.querySelectorAll('button.revoke');for(var i=0, len=a.length; i<len; i++) { if(a[i].innerHTML=="Revoke access"){a[i].click();}; | |
that will automatically click 'revoke' for all the applications | |
not that some browsers, such as chrome, will remove the 'javascript:' part if you paste it in, just type it back in and press enter. leave the browser open for 15-20 seconds and then refresh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment