2

我正在使用 Youtube Data Api v3,并且在统计部分有一个名为 commentsCount 的字段,我想知道这是不同用户在频道上发表的评论,还是频道用户在多个视频上发表的评论。

例如,如果我向 Channel 4 on Demand 发送 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"
}
}
]
}

谢谢

4

1 回答 1

3

Youtube API v3 说“commentCount 是频道的评论数”。这意味着commentCount 不是频道所有视频的评论总数,而是频道评论的总数。如我们所知,我们可以在频道的讨论部分中为特定频道发表评论,例如这里

于 2013-09-03T13:39:31.117 回答