Please update to the latest patch version to use it.
Basics
POST /api/v1/browser/cloud-active
Description: To check the startup status of the browser, you need to specify the profile ID, support cross-device queries. Up to 100 profiles can be checked in a single query. If "Multi Device mode " is on, the specific status cannot be checked. The return content is the same as ‘The profile is not opened’.
Request Parameters
Name | Type | Necessary | Default | Example | Description |
user_ids | text | Yes | - | Unique profile ID, generated after creating the profile |
Return Data
// Operation succeeded, the profile is opened.
{
"code": 0,
"msg": "success",
"data": [
{
"user_id": "xxx", //profile id
"account": "user_xxx" //account of the user who opened the profile
},
{
"user_id": "xxx", //profile id
"account": "user_xxx" //account of the user who opened the profile
}
]
}
// Operation succeeded, the profile is not opened.
{
"code": 0,
"msg": "success",
"data": []
}
// Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}