9kw 中文文档教程

发布于 8年前 浏览 30 项目主页 更新于 3年前

9kw

这是 9kw 验证码求解器服务的 api 包装器。 需要一个 Api 密钥,使用 9kw 网站生成。

Installation

node:

$ npm install 9kw
$ yarn add 9kw

仅在 node cli 上测试,但也可以在浏览器中使用 browserify。 请提供反馈。

注意:所有方法都是异步的。 正确使用回调。

Methods

const api_9kw = require('9kw')
const captcha = new api_9kw("API_KEY")

// Submit the captcha, you can also submit using an url or base64 string
// .submitUrl(url, cb) or .submitBase64(data, cb) methods
captcha.submitImage("./captcha.png", (err, newID) => {
    if(err) {
        console.log(err);
        return
    }

    console.log("Captcha uploaded!: " + captchaID);
    // Next step is to get the solution of the uploaded captcha using 
    // the new captchaID
})

// Get the solution of the captcha with a timeout of 40 seconds
// this means that the callback will be called when the captcha is solved
// usually is solved under 30s
captcha.getSolutionLoop(captchaID, 40, (err, solution) => {
     if(err) {
          console.log(err);
          return
      }

      console.log("Solution: " + solution);
})

// Tell 9kw the solution was correct or not
captcha.isCorrect(captchaID, true)

// Get the 9kw server check info
captcha.serverCheck((err, serverInfo) => {
    console.log(serverInfo)
});

// Get your account balance (credits)
captcha.getBalance((err, balance) => {
    console.log(balance)
});

Changelog

  • 0.1.4 (24/10/2016) - Refactored minor things
  • 0.1.3 (24/10/2016) - Added isCorrect, serverCheck and getBalance methods
  • 0.1.2 (24/10/2016) - Started tests
  • 0.1.0 (17/10/2016) - First version with only submit and get captcha solution

License

MIT

9kw

This is an api wrapper for the 9kw captcha solver service. An Api Key is needed, generate using the 9kw website.

Installation

node:

$ npm install 9kw
$ yarn add 9kw

Only tested on node cli, but could also work in the browser with browserify. Please give feedback.

NOTE: All methods are asynchronous. Use the callbacks correctly.

Methods

const api_9kw = require('9kw')
const captcha = new api_9kw("API_KEY")

// Submit the captcha, you can also submit using an url or base64 string
// .submitUrl(url, cb) or .submitBase64(data, cb) methods
captcha.submitImage("./captcha.png", (err, newID) => {
    if(err) {
        console.log(err);
        return
    }

    console.log("Captcha uploaded!: " + captchaID);
    // Next step is to get the solution of the uploaded captcha using 
    // the new captchaID
})

// Get the solution of the captcha with a timeout of 40 seconds
// this means that the callback will be called when the captcha is solved
// usually is solved under 30s
captcha.getSolutionLoop(captchaID, 40, (err, solution) => {
     if(err) {
          console.log(err);
          return
      }

      console.log("Solution: " + solution);
})

// Tell 9kw the solution was correct or not
captcha.isCorrect(captchaID, true)

// Get the 9kw server check info
captcha.serverCheck((err, serverInfo) => {
    console.log(serverInfo)
});

// Get your account balance (credits)
captcha.getBalance((err, balance) => {
    console.log(balance)
});

Changelog

  • 0.1.4 (24/10/2016) - Refactored minor things
  • 0.1.3 (24/10/2016) - Added isCorrect, serverCheck and getBalance methods
  • 0.1.2 (24/10/2016) - Started tests
  • 0.1.0 (17/10/2016) - First version with only submit and get captcha solution

License

MIT

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文