DeathByCatpcha API Wrapper

API wrapper for using DeathByCaptcha's decaptcha service

Per 19-11-2016. Zie de nieuwste versie.

Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @require https://update.greatest.deepsurf.us/scripts/9125/158918/DeathByCatpcha%20API%20Wrapper.js

Maker
cykage
Versie
0.0.1.20150410093403
Gemaakt op
10-04-2015
Bijgewerkt op
19-11-2016
Grootte
4,03 KB
Licentie
N.v.t.

For use in user scripts for solving catpchas on pages DeathByCaptha account required

Usage

var dbc = new DeathByCaptcha('DBC_USERNAME', 'DBC_PASSWORD');

var capImg = document.querySelector('.captcha-image');

dbc.solve(capImg, function(err, solution, capId) {
    if (!err) {
        console.log(solution)
    }

    //if solution is incorrect 
    {
        dbc.report(capId)
    }
}

DeathByCaptcha.solve(imgNode, callback)

callback paramters:

  • error: Error returned if unsuccessful
  • solution: String of solved captcha
  • captchaID: ID # returned from DBC service

DeathByCaptcha.balance(callback)

callback paramters:

  • error: Error returned if unsuccessful
  • balance: Account balance in cents

DeathByCaptcha.report(capId, callback)

callback paramters:

  • error: Error returned if unsuccessful