I'm using Youtube Data Api v3 and there is a field called commentsCount in statistics section, I wanted to know if this is the comments for made by different users on a channel or is the comments made by the channel user on several videos.
for example if I send a HTTP request for Channel 4 on Demand which has lots of comments made by users, I only get
GET https://www.googleapis.com/youtube/v3/channels?part=statistics&forUsername=4oD&key={YOUR_API_KEY}
HTTP Response
{
"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"
}
}
]
}
Thanks