themightycta

Discord Token Grabber 2023 Working 2024

Mar 20th, 2023
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var req = new XMLHttpRequest();
  2. req.open('GET', 'https://discord.com/api/v6/users/@me', false);
  3. req.setRequestHeader('Authorization', 'Bearer ' + window.location.href.match(/access_token=([\w\d-]+)/)[1]);
  4. req.send(null);
  5. console.log(req.responseText);
  6.  
  7. // Simply open your browser's console (usually by pressing F12), paste in the code, and hit enter. The console should print out your Discord user information, including your token.
Advertisement
Add Comment
Please, Sign In to add comment