Token invalid

hello, im new to discord js and still confused on how and where to put my apps tokens in. picture below
13 Replies
d.js toolkit
d.js toolkit3d ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by OP
Jei
JeiOP3d ago
/app/node_modules/discord.js/src/client/Client.js:216
if (!token || typeof token !== 'string') throw new DiscordjsError(ErrorCodes.TokenInvalid);
^

Error [TokenInvalid]: An invalid token was provided.
at Client.login (/app/node_modules/discord.js/src/client/Client.js:216:52)
at Object.<anonymous> (/app/index.js:318:8)
at Module._compile (node:internal/modules/cjs/loader:1529:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1613:10)
at Module.load (node:internal/modules/cjs/loader:1275:32)
at Module._load (node:internal/modules/cjs/loader:1096:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:164:12)
at node:internal/main/run_main_module:28:49 {
code: 'TokenInvalid'
}

Node.js v20.19.0
/app/node_modules/discord.js/src/client/Client.js:216
if (!token || typeof token !== 'string') throw new DiscordjsError(ErrorCodes.TokenInvalid);
^

Error [TokenInvalid]: An invalid token was provided.
at Client.login (/app/node_modules/discord.js/src/client/Client.js:216:52)
at Object.<anonymous> (/app/index.js:318:8)
at Module._compile (node:internal/modules/cjs/loader:1529:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1613:10)
at Module.load (node:internal/modules/cjs/loader:1275:32)
at Module._load (node:internal/modules/cjs/loader:1096:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:164:12)
at node:internal/main/run_main_module:28:49 {
code: 'TokenInvalid'
}

Node.js v20.19.0
what did i do wrong? (pls explain)
treble/luna
treble/luna3d ago
show your code
Jei
JeiOP3d ago
how
d.js docs
d.js docs3d ago
To share long code snippets, use a service like gist, sourcebin, pastebin, or similar instead of posting them as large code blocks or files.
Jei
JeiOP3d ago
all of the file or just client.js ? ok wait
Jei
JeiOP3d ago
Pastebin
* Options used when fetching an invite from Discord. * @typede...
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
treble/luna
treble/luna3d ago
... thats the source code show your code
Jei
JeiOP3d ago
im sorry, do u mean all of my code ? oh alr
async login(token = this.token) {
if (!token || typeof token !== 'My tokens here') throw new DiscordjsError(ErrorCodes.TokenInvalid);
this.token = token = token.replace(/^(Bot|Bearer)\s*/i, '');
this.rest.setToken(token);
this.emit(Events.Debug, `Provided token: ${this._censoredToken}`);
async login(token = this.token) {
if (!token || typeof token !== 'My tokens here') throw new DiscordjsError(ErrorCodes.TokenInvalid);
this.token = token = token.replace(/^(Bot|Bearer)\s*/i, '');
this.rest.setToken(token);
this.emit(Events.Debug, `Provided token: ${this._censoredToken}`);
i got this from github and try to run it so i cant do nothing with this code?
treble/luna
treble/luna3d ago
did you write any of your code at all or did you just blindly copy paste it from somewhere Because if you did write it you'd at least know where your issue is
Jei
JeiOP3d ago
from github. yeah
treble/luna
treble/luna3d ago
Yeah dont You should have a basic understanding of Javascript before making a discord bot
Jei
JeiOP3d ago
okay, thx for letting me know

Did you find this page helpful?