fcap
v1.1.0
Published
A FCaptcha Module, that handles all that request shit and gives you important info.
Downloads
8
Maintainers
Readme
INFO :
FCap is a dumb package to solve HCaptcha tasks for cheap, to purchase use https://fcaptcha.mysellix.io/
Installation
npm install fcap
Example :
let {fCap} = require(`fcap`)
let cap = new fCap(`API KEY`);
let sleep = (milliseconds) => {return new Promise(resolve => {setTimeout(resolve, milliseconds);});};
(async () => {
let task = await cap.solve({
"host": "https://discord.com/register",
"sitekey": "4c672d35-0701-42b2-88c3-78380b0db560",
"proxy": "user:pass@host:port"
})
console.log(`${task.state} # ${task.captcha_key || "Captcha_key Not Found"} in ${task.time || "Unknown"} seconds.`)
})()