我正在尝试通过 API 对评论进行评论和评分,但资源始终是 canRate: false
和canReply: false
我我已经尝试过通过谷歌javascript客户端和http get请求,但似乎没有任何效果。
$http.get('https://www.googleapis.com/youtube/v3/commentThreads', {
params: {
key: API_KEY,
part: 'snippet',
textFormat: 'plainText',
videoId: VIDEO_ID,
order: 'relevance'
}
}).success(function(response) {
$scope.comments = response.items;
$log.debug($scope.comments);
//var author = item.snippet.topLevelComment.snippet.authorDisplayName;
//var comment = item.snippet.topLevelComment.snippet.textDisplay;
//var nextToken = results.nextPageToken;
//var totalRep = item.snippet.totalReplyCount;
//var parent = item.snippet.topLevelComment.id;
})
.error(function(error) {
$log.error(error);
})
这就是我正在使用的,我可以完美地列出它们(即使使用 v3/comments
),但无法回复或评价评论,这就是我正在使用的
gapi.client.load('youtube', 'v3', function () {
$scope.selectedComment.snippet.viewerRating = 'like';
var request = gapi.client.youtube.commentThreads.update({
part: "snippet",
body: $scope.selectedComment
});
request.execute(function(response) {
$log.debug(response);
});
});
在body
部分,我也尝试过这个
body: {
id: $scope.selectedCommentId,
'snippet': {
'viewerRating': 'like'
}
}
但是我收到此错误
404 找不到指定的批注線。检查值 的
id
财产 请求正文,以确保其正确
您可以重播评论
POST https://www.googleapis.com/youtube/v3/comments?part=snippet&access_token={YOUR_API_KEY}
body
{
"snippet": {
"parentId": "parentCommentID",
"textOriginal": "yoursComment"
}
}
您可以在此处获取更多信息https://developers.google.com/youtube/v3/docs/comments/insert#examples