2+ Clients = API spam?

If I have 2 or more clients on a single IP, will this be considered API spam even though each client has a different token?
import { Client } from "discord.js";

const client1 = new Client(...);
const client2 = new Client(...);

client1.login(process.env["FIRST_TOKEN"]);
client2.login(process.env["SECOND_TOKEN"]);
import { Client } from "discord.js";

const client1 = new Client(...);
const client2 = new Client(...);

client1.login(process.env["FIRST_TOKEN"]);
client2.login(process.env["SECOND_TOKEN"]);
4 Replies
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
CanineData
CanineData3y ago
No
monbrey
monbrey3y ago
Only if theyre actually spamming the API
deminearchiver
deminearchiverOP3y ago
Oh good nice

Did you find this page helpful?