...
对于ReCaptcha V3的解决方案,我们提供的任务类型如下:
任务类型 | 描述 | 价格 | ||||||
---|---|---|---|---|---|---|---|---|
ReCaptchaV3TaskProxyless | reCaptcha V3解决方案,使用服务器内置代理 |
| ||||||
ReCaptchaV3TaskProxylessS9 | reCaptcha V3高分值解决方案,使用服务器内置代理并使得返回的token分数至少为0.9 |
| ||||||
ReCaptchaV3EnterpriseTaskProxyless | reCaptcha V3Enterprise解决方案,使用服务器内置代理 |
|
对象结构
属性 | 类型 | 必须 | 说明 |
---|---|---|---|
clientKey | string | 是 | 帐户密钥,可以在个人中心找到 |
task | object | 是 | 任务参数对象,详情为表格以下几项 |
type | string | 是 | 任务类型,如 ReCaptchaV3TaskProxyless |
websiteURL | string | 是 | ReCaptcha 网页地址,一般固定值 |
websiteKey | String | 是 | ReCaptcha 网站密钥,固定值 |
isInvisible | Bool | 否 | 对于reCaptcha V3类型, 该参数一般都为true,如果用户不提供,则默认自动设置为true |
pageAction | String | 否 | 此值必须正确,否则识别的结果大概率无效 |
请求示例
Code Block |
---|
POST https://api.ez-captcha.com/createTask Host: api.ez-captcha.com Content-Type: application/json { "clientKey":"yourapiKey", "task": { "type":"ReCaptchaV3TaskProxyless", "websiteURL":"https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php", "websiteKey":"6LdyC2cUAAAAACGuDKpXeDorzUDWXmdqeg-xy696", "pageAction": "examples/v3scores", "isInvisible": true } } |
...
根据系统负载,您将在 1s 到 10s 的时间间隔内得到结果
请求示例
Code Block |
---|
POST https://api.ez-captcha.com/getTaskResult
Content-Type: application/json
{
"clientKey":"cc9c18d3e263515c2c072b36a7125eecc078618f3",
"taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
} |
响应结果
参数 | 类型 | 说明 |
---|---|---|
errorId | Integer | 错误提示: 0 - 没有错误,1 - 有错误 |
errorCode | string | 错误代码,🔗 点这里查看全部错误列表 |
errorDescription | string | 错误详细描述 |
status | String | processing - 正在识别中,请3秒后重试 |
solution | Object | 识别结果,不同类型的任务结果会有所区别。 |
gRecaptchaResponse | string | 识别结果:response值,用于POST或模拟提交给目标网站。 一次性使用,有效期120s,建议在60s内使用。 |
响应示例
Code Block |
---|
{ "errorId": 0, "errorCode": null, "errorDescription": null, "solution": { "gRecaptchaResponse": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnU......" }, "status": "ready" } |
...