andrei.godea
andrei.godea

Reputation: 853

How to get a specific YouTube comment?

I am trying to get a specific comment from a YouTube video. For example I want to get the details from the 34th comment of a YouTube video. Does anybody knows how can I do this without reading all the comment list?

Or if there isn't available any solution for retrieving only one comment, can you get a list with all the comments from a YouTube video? (I used the API method commentThreads but it has a limit of 100 comments within a call).

Btw, I read this How to get a specific comment of a youtube video? , but maybe the answer is outdated.

Upvotes: 1

Views: 4082

Answers (1)

Kumar
Kumar

Reputation: 1217

Just use https://www.googleapis.com/youtube/v3/comments to get specific comment from a video like

https://www.googleapis.com/youtube/v3/comments?part=snippet&id={COMMENT_ID}&textFormat=html&key={YOUR_API_KEY} 

Use the ID that is specific for every comment and the API Key on your Google Developer Console. You can get the commentID clicking on the timestamp link beside the commenter's name.

Upvotes: 2

Related Questions