How to login discord using token?

qubek

Newbie
Joined
Jan 29, 2023
Messages
1
Reaction score
0
Hello,

just like in the title - how can i login to discord account using token?


I used the following code before, pasted it in the google chrome console and it worked fine, but it's not working for 2 days now. Anyone know why?

(function() {window.t = "your token here";window.localStorage = document.body.appendChild
(document.createElement `iframe`).contentWindow.localStorage;window.setInterval(() =>
window.localStorage.token = `"${window.t}"`); window.location.reload();})();
 
If it was working for 2 days and now it doesn't, it means that that token expired. I think I read somewhere that Discord's API token lasts for 3 days. You need to refresh it (get new one).
 
"window.t" is empty, you'll need to put your token into this variable.
 
Back
Top