AkamaiBMP
Create a task through sync api https://sync.ez-captcha.com/createSyncTask
, and get the result directly
If you obtain an invalid token, please contact us. It will usually work normally after we optimize it.
Task Type
Task Type | Description | Price | Price(USD) |
---|---|---|---|
AkamaiBMPTaskProxyless | AkamaiBMP solution | 38 POINTS | $3.8/1k |
Make a POST request to the API URL. using the following form data
Parameter | Type | Required | Description |
---|---|---|---|
bundleID | string | true | Target AppId |
device | string | true | android (or) ios |
version | string | true | Akamai BMP version |
Create Task
Example
POST https://sync.ez-captcha.com/createSyncTask
Content-Type: application/json
{
"clientKey": "YourClientKey",
"task": {
"type": "AkamaiBMPTaskProxyless",
"bundleID": "xxxx",
"device": "ios",
"version": "3.3.5"
}
}
Response Example
The returned payload is submitted as sensor data to the website api via POST request.
{
"errorId": 0,
"solution": {
"payload": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
"status": "ready"
}