Error accepting invite #1323
prtwolf802
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
const Captcha = require("2captcha");
const solver = new Captcha.Solver("api");
const { Client } = require('discord.js-selfbot-v13');
const client = new Client({
captchaSolver : function (captcha, UA) {
return solver.hcaptcha(captcha.captcha_key , 'discord.com' , {
invisible : 1,
userAgent : UA,
data : captcha.captcha_rqdata,
}).then(res => res.data)
})
client.on("ready" , async() => {
console.log(client.user.id);
})
client.login('')
error message :
Error accepting invite: HTTPError [APIError]: An Unexpected Error has occured. Please submit an issue on GitHub detailing this event.
at RequestHandler.execute (C:)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async RequestHandler.push (C:)
at async Client.acceptInvite (C:)
at async Client. (C:) {
code: 500,
method: 'post',
path: '/invites/',
requestData: {
json: { session_id: '381069135e1a4206bfdfe9d78396de31' },
files: [],
headers: undefined
}
}
Node.js v20.17.0
Beta Was this translation helpful? Give feedback.
All reactions