- Published on
How to Login into Discord with your token
- Authors
- Name
- Law
- @law_tutorials
Introduction
Discord tokens are a unique identifier
that allow you to use Discord's API
. Your token is essential if you want to use any bot
, perform certain actions, or access private information. In this guide
, we will show you how to login to Discord using your token
.
Watch this video if you want to see a visual guide on how to login to Discord with your token.
Step-by-Step Guide
- Open the Discord web app and go to the login page.
- Press
Ctrl + Shift + I
on Windows orCommand + Shift + I
on Mac to open the developer console. - Go to the Console tab.
- Enter the following command:
getToken.js
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login('PASTE TOKEN HERE')
- Replace
YOUR_DISCORD_TOKEN
with your actual token. - Press
Enter
to run the command. - You should now be logged in to Discord with your token.
- If the token is wrong, the page will just reload without logging you in.
Important Notes
- You should never share your token with anyone.
- You should never use your token with non-trusted applications.
- Only use your token if you know what you are doing.
- Use an alt-account if you want to test bots / self-bots.
Reset Your Token
If you want to reset your token, there's multiple ways to do, but the easiest one:
- Go to your Discord settings.
- And just
change your password.
Conclusion
In conclusion, logging in to Discord with your token is easy, but be sure to keep your token private and secure. Remember to always use your token with caution and only with trusted applications.