Socket
Socket
Sign inDemoInstall

node-capsolver

Package Overview
Dependencies
9
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-capsolver

- [Installing](#Installing) - [Examples](#Examples) - [API](#API) ## Installing ### Package manager Using npm: ``` $ npm install node-capsolver ``` Using yarn: ``` $ yarn add node-capsolver ```


Version published
Weekly downloads
181
decreased by-19.91%
Maintainers
2
Install size
2.15 MB
Created
Weekly downloads
 

Readme

Source

🤖 CapSolver ✔️

An API wrapper for CapSolver.com written in Node.js

Table of Contents

  • Installing
  • Examples
  • API

Installing

Package manager

Using npm:

$ npm install node-capsolver

Using yarn:

$ yarn add node-capsolver

Examples

ImageToTextTask

const CapSolver = require('node-capsolver')
const fs = require('fs')

const solver = new CapSolver("CAI-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", {
    verbose: true, // Optional
    verboseIdentifier: "[Image Solve]"  // Optional & not required when verbose: true
})

solver.getBalance().then(data => {
    if (data?.balance > 0) {
        solver.solve({
            type: "ImageToTextTask",
            body: fs.readFileSync('captcha.png') // The library will automatically convert buffers into base64	strings for you
        }).then((task) => {
            console.log(task.solution.text)
        })
    } else {
        console.log("Insufficient balance.")
    }
})

HCaptchaTaskProxyless

const CapSolver = require('node-capsolver')
const axios = require("axios").default;
const { JSDOM } = require('jsdom');

(async () => {
    let demoURL = "https://maximedrn.github.io/hcaptcha-solver-python-selenium/";
    let resp = await axios({
        method: "GET",
        url: demoURL,
    })

    const dom = new JSDOM(resp.data)
    const siteKey = dom.window.document.querySelector('.h-captcha').getAttribute('data-sitekey');

    const handler = new CapSolver('CAI-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', {
        verbose: true // Optional
    })
    let b = await handler.getBalance();
    if (b.balance > 0) {
        let CapResponse = await handler.solve({
            type: 'HCaptchaTaskProxyLess',
            websiteURL: demoURL,
            websiteKey: `${siteKey}`,
        })

        console.log(CapResponse)
    } else {
        console.log("Insufficient balance.")
    }
})();

API

In general, the CapSolver.solve() function is all you need. It combines createTask() and getTaskResult() into one, meaning you don't need to worry about anything else.

async CapSolver.solve(task)

async CapSolver.createTask(task)

async CapSolver.getTaskResult(taskId)

async CapSolver.feedbackTask(taskId, result)

async CapSolver.getBalance()

When using an IDE that supports JSDoc, you will get suggestions of properties the task supports. To get the best suggestions, specify the type first. For the general API, check the CapSolver.com documentation.

Keywords

FAQs

Last updated on 10 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc