Leo
Leo
DIAdiscord.js - Imagine an app
Created by Leo on 6/24/2023 in #djs-questions
Viewing rate limits
Handlers work, just need to make em more readable:

console.log(
rest.requestManager.handlers.map((h) => ({
name: h.id,
remaining: h.remaining,
limit: h.limit,
}))
);

console.log(
rest.requestManager.handlers.map((h) => ({
name: h.id,
remaining: h.remaining,
limit: h.limit,
}))
);
Thank you
7 replies
DIAdiscord.js - Imagine an app
Created by Leo on 6/24/2023 in #djs-questions
Viewing rate limits
I'm just doing some experimenting and need to keep an eye on limits to get an idea of what I can/can't do
7 replies
DIAdiscord.js - Imagine an app
Created by Leo on 6/24/2023 in #djs-questions
Viewing rate limits
chewie just told me they're dynamic so not exactly the answer I was looking for
7 replies
DIAdiscord.js - Imagine an app
Created by Leo on 6/24/2023 in #djs-questions
Viewing rate limits
I don't think that's the number I need, where would the rate limiting for channelsAPI be?
7 replies
DIAdiscord.js - Imagine an app
Created by Leo on 6/24/2023 in #djs-questions
Get first message in thread with @discordjs/core
Had no idea, thank you!
3 replies