> For the complete documentation index, see [llms.txt](https://blog.accsmarkethub.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.accsmarkethub.com/tutorials/discord-logins.md).

# How to login to Discord

## How to login to Discord using the Token?

If you want to access your [Discord](http://www.discord.com/login) account more efficiently, you can use a token (auth\_token) instead of the standard login and password. This method can streamline the process, especially if you manage multiple accounts.

## <mark style="color:yellow;">Using Developer Console</mark>

1. Purchase a **Discord account** on [AccsMarketHub.com](http://accsmarkethub.com).&#x20;

<figure><img src="/files/eaYtncaIj9CFvVJ56MVU" alt=""><figcaption></figcaption></figure>

&#x20; :warning: **Important :** You will receive data in format - **login:password:auth\_token**.

<figure><img src="/files/mPjR7byfBVqMdE7sfS3f" alt=""><figcaption></figcaption></figure>

:bulb: **Note :** The account format may differ slightly, for eg. with or without email-data.

2. Go to Discord [login](https://discord.com/login) in your browser.

&#x20;:warning: I**mportant :** You can log into discord using token in browser only. This method does not work in&#x20;

&#x20;     Desktop application.

<figure><img src="/files/a8vw1G1GgD711GzvJqU8" alt=""><figcaption></figcaption></figure>

3. This needs you to work in **developer console** :&#x20;

&#x20;       1\. Press **F12** key to open developer panel and go to **Console Tab**.

<figure><img src="/files/OmB2ApeWk9iTVdnwxYor" alt=""><figcaption></figcaption></figure>

&#x20;      2\. Copy the below code in the console and replace the **‘TOKEN’** with your token.

{% code fullWidth="false" %}

```javascript
function login(token) {
    setInterval(() => {
        document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
    }, 50);
    setTimeout(() => {
        location.reload();
    }, 2500);
}
    login('TOKEN');
```

{% endcode %}

<figure><img src="/files/aW4bj1W0mfHYUDF9rSRj" alt=""><figcaption></figcaption></figure>

&#x20;     3\. Press Enter and after a minimal loading time, your account will open.

## <mark style="color:yellow;">**Using Discord Web Extension**</mark>&#x20;

1\. Install [discord](https://chromewebstore.google.com/detail/discord-token-login/ealjoeebhfijfimofmecjcjcigmadcai) web extension in browser.

<figure><img src="/files/IH0J60S9vsrpJasIil8N" alt=""><figcaption></figcaption></figure>

&#x20;2\. Click on the **Discord icon** to activate it.

&#x20;3\. Enter the **Token** and log into your account.

<figure><img src="/files/QlqYxkjQFVHHIhIpwGac" alt=""><figcaption></figcaption></figure>

:warning: I**mportant** :  **For Security Reasons**

* Make sure no one has access to your token, it may lead to unauthorised access to your discord account.
* It is advised to change your token periodically for additional security.

## <mark style="color:yellow;">Using login credentials (email and password)</mark>

1. Go to  [discord](https://discord.com/login) login page.
2. Enter your credentials - **email & password.**

<figure><img src="/files/gBUBrsH0zr8cWiDEg3te" alt=""><figcaption></figcaption></figure>

3. Click **login** to use your discord account.
4. If do not have an account or **not registered** :&#x20;

* &#x20; Click on **Register**.

<figure><img src="/files/3BUC9PunDsaCdruKDpZz" alt=""><figcaption></figcaption></figure>

* Fill in the **required(\*)** data and press **Continue**.

<figure><img src="/files/0f6gJc7LV5NEUO3pEVET" alt=""><figcaption></figcaption></figure>

* Check for a c**onfirmation mail** in your mails and **verify** your id.

<figure><img src="/files/lz4gvxfrpVzBvE6xMWWO" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/BnGMubpQ5XprlsN11Ssu" alt=""><figcaption></figcaption></figure>

4. **Continue to Discord** and you are all set to use your discord account now.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://blog.accsmarkethub.com/tutorials/discord-logins.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
