Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

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)

AkamaiWEBTaskProxyless

Akamai solution

38 POINTS

$3.8/1k

Sensor Data

Parameter

Type

Required

Description

abck

string

true

abck cookie in your session (need to be the latest)

pageUrl

string

true

your target page url that you want to bypass

bmsz

string

true

bm sz cookie value (need to be the latest)

ua

string

true

UserAgent you use in the program.

Create Task

Example

POST https://sync.ez-captcha.com/createSyncTask
Content-Type: application/json

{
    "clientKey": "YourClientKey",
    "task": {
        "type": "AkamaiWEBTaskProxyless",
        "abck": "xxxx",
        "pageUrl": "xxxx",
        "bmsz": "xxxx",
        "ua": "xxx"
    }
}

API return a payload in response body. you need to generate new sensor data 3 times to get valid abck . So you need to use the latest abck cookie values to request our API to get new sensor data everytime, and finally get the valid abck value.

Response Example

The returned payload is submitted as sensor_data to the website api via POST request.

{
	"errorId": 0,
	"solution": {
		"payload": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
	},
	"status": "ready"
}

 

  • No labels