保利威文档中心

幫助中心

取得多個頻道號預約數與讚數

更新時間:2022-09-02 18:08:07

介面URL

http://api.polyv.net/live/v3/channel/bookings-and-likes

介面說明

1.取得多個頻道號預約數與讚數
2.介面支援https

請求方式

GET

請求參數

參數名 必填 類型及範圍 說明
sign true String 簽名,為32位大寫的MD5值,產生簽名的appSecret金鑰作為通訊資料安全的關鍵資訊,嚴禁儲存在用戶端直接使用,所有API都必須透過客戶自己伺服器中轉呼叫POLYV伺服器取得回應資料【詳見簽名產生規則
appId true string 開發者帳號下的appId
timestamp true string 13位當前時間的時間戳
channelIds true string 頻道號。多個用英文逗號隔開

回傳錯誤結果JSON範例

签名错误:
{
    "code": 403,
    "status": "error",
    "message": "invalid signature.",
    "data": ""
}
时间戳错误:
{
    "code": 400,
    "status": "error",
    "message": "invalid timestamp.",
    "data": ""
}
appId错误
{
    "code": 400,
    "status": "error",
    "message": "appId is required.",
    "data": ""
}
应用找不到
{
    "code": 400,
    "status": "error",
    "message": "application not found.",
    "data": ""
}
频道号错误
{
    "code": 400,
    "status": "error",
    "message": "channelIds is required.",
    "data": ""
}

回傳正確結果JSON範例

{
    "code": 200,
    "status": "success",
    "message": "",
    "data": [
        {
            "channelId": 2271296,
            "bookings": 1,
            "likes": 0
        },
        {
            "channelId": 2271286,
            "bookings": 0,
            "likes": 0
        },
        {
            "channelId": 2075015,
            "bookings": 0,
            "likes": 81
        }
    ]
}

欄位說明

欄位 類型及範圍 說明
code int 介面請求狀態碼,200表示成功
status string 介面請求狀態,"success"表示成功
message string 請求失敗時回傳的錯誤資訊
data array
data[].channelId int 頻道號
data[].bookings long 預約數
data[].likes long 讚數

PHP請求範例

<?php

//引用config.php
include 'config.php';

$channelIds = "322120,2029098";
$params = array(
        'appId'=>$appId,
        'channelIds'=>$channelIds,
        'timestamp'=>$timestamp
    );

//生成sign
$sign = getSign($params); //详细查看config.php文件
$params['sign'] = $sign;

$url="http://api.polyv.net/live/v3/channel/bookings-and-likes?".http_build_query($params);

$ch = curl_init() or die ( curl_error() );
curl_setopt( $ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, 360);
$response = curl_exec ( $ch );
curl_close ( $ch );
echo $response;
?>
联系客服,在线咨询