Coder Social home page Coder Social logo

Comments (5)

AhmetEnesEsmer avatar AhmetEnesEsmer commented on June 1, 2024

i am also getting that error

from captcha-solver.

NoorAlAinMaroof avatar NoorAlAinMaroof commented on June 1, 2024

I am also getting the same error. I tried to solve it by creating a provider like so


const provider = new captchaSolverProvider({ 
name: 'browser', 
supportedTaskTypes: [ 'image-to-text', 'recaptcha', 'recaptcha-proxyless', 'nocaptcha', 'nocaptcha-proxyless', 'funcaptcha', 'funcaptcha-proxyless ]
});

const solver = new CaptchaSolver(provider)
const codes = await solver.solve()

but Then i got the error the solve is not defined for solver.

from captcha-solver.

joneldiablo avatar joneldiablo commented on June 1, 2024

Hi!!:
I was trying to use this, after a while I succeeded with comething like this:

this.solver = new CaptchaSolver('anti-captcha', { key: '.......' });  
//needs account from https://anti-captcha.com you can get .05 free credit to test
// I spect the captcha as base64
const imageBuffer = Buffer.from(img,'base64');
const taskId = await this.solver.createTask({
      type: 'image-to-text',
      image: imageBuffer,
});
const obj = await this.solver.getTaskResult(taskId);

from captcha-solver.

joneldiablo avatar joneldiablo commented on June 1, 2024

obj=

{
  errorId: 0,
  status: 'ready',
  solution: { text: 'U29XS', url: 'http://69.39.235.19/541/165160220699315.png' },
  cost: '0.00070',
  ip: '....',
  createTime: 1651602206,
  endTime: 1651602213,
  solveCount: 0
}

from captcha-solver.

IgalNeeman avatar IgalNeeman commented on June 1, 2024

done

from captcha-solver.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.