bestcaptchasolver
Version:
bestcaptchasolve-nodejs is a super easy to use bypass captcha nodeJS API wrapper for bestcaptchasolver.com captcha service
47 lines (41 loc) • 1.5 kB
JavaScript
// require library
var bestcaptchasolver = require('../');
// check /account for accesskey
const ACCESS_TOKEN = 'ACCESS_TOKEN_HERE';
// log what's happening to UI and console
function log(txt) {
console.log(txt);
}
// for more details check https://bestcaptchasolver.com/captchabypass-api
// example method
function example() {
var captcha_id = undefined;
bestcaptchasolver.set_access_token(ACCESS_TOKEN);
// balance
bestcaptchasolver.account_balance().then(function (balance) {
log('Balance: $' + balance); // print balance gathered
log('Solving turnstile...');
return bestcaptchasolver.submit_turnstile({
page_url: 'PAGE_URL_HERE',
site_key: 'SITE_KEY_HERE',
// action: 'taken from page source, optional',
// cdata: 'taken from page source, optional',
// domain: 'challenges.cloudflare.com',
// user_agent: 'your UA',
// proxy: '12.34.54.56:1234'
// affiliate_id: 'ID of affiliate'
});
}).then(function (id) {
captcha_id = id;
log('Got ID ' + id + ', waiting for completion ...');
return bestcaptchasolver.retrieve_captcha(id);
}).then(function (data) {
log('Turnstile response: ' + JSON.stringify(data.solution));
}).catch(function (err) {
log('Error: ' + err.message || err);
}).then(function () {
log('Example finished !');
});
}
example(); // run example