Skip to content Skip to sidebar Skip to footer

Youtube API V3 Can't Reply Or Rate On Any Comment

I am trying to comment and rate a comment via API but the resource is always canRate: false and canReply: false I I've tried through google javascript client and http get request,

Solution 1:

You can replay the comment

POST https://www.googleapis.com/youtube/v3/comments?part=snippet&access_token={YOUR_API_KEY}

body
{
 "snippet": {
  "parentId": "parentCommentID",
  "textOriginal": "yoursComment"
 }
}

You can get more info here https://developers.google.com/youtube/v3/docs/comments/insert#examples


Post a Comment for "Youtube API V3 Can't Reply Or Rate On Any Comment"