Skip to main content
Skip table of contents

Получить списoк ссылок воспроизведения: Camera.GetMediaUrls

Метод и параметры

Запрос Camera.MediaUrls возвращает ссылки воспроизведения.

string Camera.MediaUrls(array uids, unsigned ttl)

Параметры

array uids REQUIRED = ["camera-0","camera-1"] – список уникальных идентификаторов камер, для которых необходимо вернуть информацию.

unsigned ttl 3600 – время, в течении которого будет доступен URL воспроизведения.

POST /api/

JSON-RPC
JSON
{
    "jsonrpc": "2.0",
    "method": "Camera.GetMediaUrls",
    "params": {
        "uids": [
            "camera-0",
            "camera-1"
        ],
        "ttl": 3600
    },
    "id": 1
}
cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/' \
	--header 'Content-Length: 193' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--header 'Authorization: Bearer <api-authorization-token>' \
	--header 'Content-Length: <Длина данных>' \
	--data '{
    "jsonrpc": "2.0",
    "method": "Camera.GetMediaUrls",
    "params": {
        "uids": [
            "camera-0",
            "camera-1"
        ],
        "ttl": 3600
    },
    "id": 1
}'
PHP
PHP
$data = array (
  'jsonrpc' => '2.0',
  'method' => 'Camera.GetMediaUrls',
  'params' => 
  array (
    'uids' => 
    array (
      0 => 'camera-0',
      1 => 'camera-1',
    ),
    'ttl' => 3600,
  ),
  'id' => 1,
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'POST',
		'header' => "Content-Type: application/json\r
Accept: application/json\r
Authorization: Bearer <api-authorization-token>\r
Content-Length: <Длина данных>",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/', false, $context);

200 OK

JSON
{
    "id": 1,
    "jsonrpc": "2.0",
    "result": {
        "camera-uid5065687": true
    }
}

400 Bad Request

Ошибка json-rpc

JSON
{
    "error": {
        "code": -32601,
        "message": "Method not found"
    }
}

500 Internal Server Error

Ошибка сервера

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.