Polyv Help Center

Help Center

Get Viewer Watch Detail List

Updated: 2025-08-29 14:14:25

API Description

1、获取观众观看详情列表

2、接口支持https协议

3、直播观看详情数据支持查询最近3年内的历史数据,建议将历史数据导出到本地储存,以便后续查询。

API URL

http://api.polyv.net/live/v4/user/viewlog/detail

<a href="/req.html?api=http://api.polyv.net/live/v4/user/viewlog/detail"" target="_blank">Online API Call

Request Method

GET

API Constraints

  1. The API supports both HTTP and HTTPS. HTTPS is recommended for security. API calls have frequency limits. See details

Request Parameter Description

Parameter Required Type Description
appId true String Account appId See Get Secret Key
timestamp true String Current 13-digit millisecond timestamp, valid for 3 minutes
sign true String Signature, a 32-character uppercase MD5 value. The appSecret key used to generate the signature is critical for communication data security. It must not be stored or used directly on the client side. All APIs must be called through the customer's own server to relay requests to the POLYV server for response data. See Signature Generation Rules
viewerId true String Viewer ID
startDate false String Start date. Format: yyyy-MM-dd
endDate false String End date, must be in the same month as the start date. Format: yyyy-MM-dd
pageNumber false String Current page number
pageSize false String Page size

Example

http://api.polyv.net/live/v4/user/viewlog/detail?viewerId=1690850466494&pageNumber=1&endDate=2023-08-30&appId=frlr1zazn3&sign=F689BD863E17C07992D636250C82E59C&pageSize=10&startDate=2023-08-01&timestamp=1691131188500

Response Parameter Description

Parameter Type Description
code Integer Status code, same as HTTP status code, used to determine basic response status
data Object See Data Parameter Description
error Object Error information when status code is not 200 See Error Parameter Description
requestId String Request ID, a unique UUID generated for each request, used only for troubleshooting and debugging, not for business logic
status String Response result, determined by business logic: success returns "success", failure returns "error"
success Boolean Whether the response was successful

Data Parameter Description

Parameter Type Description
contents Array Paginated data collection See Contents Parameter Description
pageNumber Integer Current page number
pageSize Integer Page size
totalItems Integer Total number of records
totalPages Integer Total number of pages

Contents Parameter Description

Parameter Type Description
area String Region
browser String Viewing terminal
ip String Viewer IP
nick String Nickname
playDuration String Watch duration
channelId Integer Channel ID
sessionId String Session ID
startTime String Start time
viewType String Viewing type
viewerId String Viewer ID
param4 String Custom parameter param4
param5 String Custom parameter param5

Error Parameter Description

Parameter Type Description
code Integer Error code, used to determine the specific error reason
desc String Error description, corresponding to error.code

Java Request Example

For quick integration of basic code, please download the relevant dependency source code. Click here to download the source code. After downloading, add it to your own source code project. The test cases include HttpUtil.java and LiveSignUtil.java in the downloaded file.

It is strongly recommended to use the Live Java SDK for API integration. The Live Java SDK provides unified encapsulation and optimization for API call logic, exception handling, data signing, and HTTP request thread pools.

private static final Logger log = LoggerFactory.getLogger(getClass());
/**
 * 获取观众观看详情列表
 * @throws IOException
 * @throws NoSuchAlgorithmException
 */
@Test
public void viewlogDetailTest() throws IOException, NoSuchAlgorithmException {
    //公共参数,填写自己的实际参数
    String appId = super.appId;
    String appSecret = super.appSecret;
    String timestamp = String.valueOf(System.currentTimeMillis());
    
    //业务参数
    String url = "http://api.polyv.net/live/v4/user/viewlog/detail";
    String viewerId = "1690850466494";
    String startDate = "2023-08-01";
    String endDate = "2023-08-30";
    String pageNumber = "1";
    String pageSize = "10";
    
    //http 调用逻辑
    Map<String, String> requestMap = new HashMap<>();
    requestMap.put("appId", appId);
    requestMap.put("timestamp", timestamp);
    requestMap.put("viewerId", viewerId);
    requestMap.put("endDate", endDate);
    requestMap.put("pageNumber", pageNumber);
    requestMap.put("pageSize", pageSize);
    requestMap.put("startDate", startDate);
    
    requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
    
    String response = HttpUtil.get(url, requestMap);
    
    log.info("测试获取观众观看详情列表成功:{}", response);
    //do somethings
    
}

Response Example

For global system error descriptions, see Global Error Description

Success Example

{
    "code": 200,
    "status": "success",
    "requestId": "7fb274a7c6744907838f4a25096a1fa5.73.16911311915969377",
    "data": {
        "pageNumber": 1,
        "pageSize": 10,
        "totalPages": 1,
        "totalItems": 1,
        "contents": [
            {
                "viewerId": "1690850466494",
                "nick": "1690850466494",
                "viewType": "直播",
                "sessionId": "gncu0mtdz6",
                "startTime": 1690850595000,
                "playDuration": "00:00:30",
                "channelId": 10002,
                "area": "湖南长沙市",
                "ip": "175.10.235.43",
                "browser": "Mobile Safari"
            }
        ]
    },
    "success": true
}

Error Example

{
    "code": 400,
    "status": "error",
    "requestId": "d310b70bc329403f87f77f9203d50f89.128.16360831552223589",
    "error": {
        "code": 20001,
        "desc": "application not found."
    },
    "success": false
}
联系客服,在线咨询