...
Request format:POST
application/json
Example Structure
Parameters | Type | Required | Purpose | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
type | string | Yes | NoCaptchaTaskProxyless
RecaptchaV2TaskProxyless
|
|
RecaptchaV2TaskProxylessK1
|
|
|
|
|
| |||
websiteURL | string | Yes | The address of the ReCaptcha web page.Fixed value.🔗 How to find the value of websiteURL? |
websiteKey | String | Yes | The ReCaptcha website key. Fixed value.🔗 How to find the value of websiteKey? |
isInvisible | Bool | No | If you encounter a reCaptchaV2 of |
Request Example
代码块 | ||
---|---|---|
| ||
{ "clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f", "task": { "websiteURL": "https://www.google.com/recaptcha/api2/demo", "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-", "type": "NoCaptchaTaskProxyless", "isInvisible": false // You only need to add the true value if the reCaptcha type is isInvisible. } } |
...
代码块 |
---|
{ "clientKey":"cc9c18d3e263515c2c072b36a7125eecc078618f3", "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006" } |
Response Result
Parameters | Type | Purpose |
---|---|---|
errorId | Integer | Error message: 0 - No error, 1 - Error |
errorCode | string | Error code.Check out🔗 errors list. |
errorDescription | string | Error description |
status | String | processing - task is not ready yet. |
solution | Object | Task result data. Different for each type of task. |
gRecaptchaResponse | string | Recognition result: The The |
Response Example
代码块 | ||
---|---|---|
| ||
{ "errorId": 0, "errorCode": null, "errorDescription": null, "solution": { "gRecaptchaResponse": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnU......" }, "status": "ready" } |
...