我正在使用Youtube Data Api v3,统计部分有一个名为commentsCount的字段,我想知道这是不同用户在频道上发表的评论,还是渠道用户对几个评论的评论视频。
例如,如果我发送了一个针对用户提供大量评论的第4频道点播的HTTP请求,我只能
GET https://www.googleapis.com/youtube/v3/channels?part=statistics&forUsername=4oD&key={YOUR_API_KEY}
HTTP响应
{
"kind": "youtube#channelListResponse",
"etag": "\"jSwUP5mXUGwzAFbnLazODtWp_hU/wSdSPc8UxAJku7v41o3DVmEytAU\"",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 5
},
"items": [
{
"kind": "youtube#channel",
"etag": "\"jSwUP5mXUGwzAFbnLazODtWp_hU/qDF5UBIAV1LXx_oOE_V-wpUvx7c\"",
"id": "UCQQGTtqKZf0S0pQ2ey5c4Ag",
"statistics": {
"viewCount": "9245",
"commentCount": "2",
"subscriberCount": "62314",
"hiddenSubscriberCount": false,
"videoCount": "1"
}
}
]
}
谢谢
答案 0 :(得分:3)
Youtube API v3说“commentCount是频道评论的数量”。这意味着commentCount不是所有频道视频的评论总数,而是评论频道。我们知道,我们可以在频道的讨论部分评论特定频道,例如here