Skip to content
On this page
Home
>API接口
>通用参数说明

通用参数说明

下面将讲解完整的参数说明,你也可以查看如何使用代理

json
{
    "clientKey": "YOUR_API_KEY", //你的api密钥
    "appId": "YOUR_DEVELOPER_APP_ID",//如果你是开发者,你一定需要使用此参数
    "task": {
        "websiteURL": "https://www.google.com/recaptcha/api2/demo",//网页地址
        "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",//部分captcha会用到siteKey
        "type": "ReCaptchaV2Task",//通常携带ProxyLess后缀的任务类型不需要proxy

        //You can send the proxy information with one of these proxy format, please read carefully
        // proxy format 1
        "proxyType": "https",// socks5 | http | https
        "proxyAddress": "198.199.100.10",
        "proxyPort": 3949,
        "proxyLogin": "user",
        "proxyPassword": "pass", 

        // proxy format 2
        "proxy": "socks5:192.191.100.10:4780:user:pwd",
        //or
        "proxy": "198.199.100.10:4780:user:pwd", //You don't need to put the user:pwd if it's whitelisted IP proxy
    }
}