...
信息 |
---|
Links that contain the keywords "api.js" and "recaptcha", and have "enterprise" in the URL, generally refer to the enterprise version. |
警告 |
---|
The following websites are currently not compatible with this API:
|
信息 |
---|
It may be difficult to pass the enterprise v2 verification through this API at the moment. If you are having trouble passing the verification, I suggest exploring other methods, which may require some technical expertise.
|
...
Request format:POST
application/json
Object Structure
Parameter | Type | Required | Purpose | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
type | string | Yes | RecaptchaV2EnterpriseTaskProxyless
RecaptchaV2EnterpriseTaskProxylessK1
|
|
| |||||
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? | ||
enterprisePayload | Object | No | The additional parameter "s" can be found in the code below:
|
Request Example
代码块 | ||
---|---|---|
| ||
{ "clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f", "task": { "websiteURL": "https://store.steampowered.com/", "websiteKey": "6LdIFr0ZAAAAAO3vz0O0OQrtAefzdJcWQM2TMYQH", "type": "RecaptchaV2EnterpriseTaskProxyless", "enterprisePayload": { "s": "2JvUXHNTnZl1Jb6WEvbDyBMzrMTR7oQ78QRhBcG07rk9bpaAaE0LRq1ZeP5NYa0N..." } } } |
...
代码块 |
---|
{ "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" } |
...