Published on

How to Login into Discord with your token

Authors

tailwind-nextjs-banner

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

  1. Open the Discord web app and go to the login page.
  2. Press Ctrl + Shift + I on Windows or Command + Shift + I on Mac to open the developer console.
  3. Go to the Console tab.
  4. 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')
  1. Replace YOUR_DISCORD_TOKEN with your actual token.
  2. Press Enter to run the command.
  3. You should now be logged in to Discord with your token.
  4. 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:

  1. Go to your Discord settings.
  2. 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.