0.0.2 • Published 11 years ago

uncaptcha v0.0.2

Weekly downloads
2
License
-
Repository
-
Last release
11 years ago

node-uncaptcha

reCAPTCHA helper using decaptcher

installation

$ npm install uncaptcha

super simple to use

getting a valid solved challenge

var Uncaptcha = require('uncaptcha');

var uncaptcha = new Uncaptcha({key: /* reCAPTCHA key */, decaptcherKey: /* decaptcher key */});

uncaptcha.decode().done(
    function (result) {
        console.log(result); // { challenge: '...', decoded: '...', genTaskID: '...' }
    },
    function (error) {}
);

getting a refund for a bad solve from decaptcher

uncaptcha.refund(/* genTaskID */).done(
    function (result) {
        console.log(result); // ok
    },
    function (error) {}
);
0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago