我尝试使用以下API将youtube视频评论状态从“已发布”更改为“holdForReview”,并且我已成功更改评论的状态。
https://www.googleapis.com/youtube/v3/comments/setModerationStatus?id= {COMMENT_ID}&安培; moderationStatus = heldForReview&安培;关键= {} API_KEY
当我尝试将评论状态从“heldForReview”更改为“已发布”时(使用相同的上述API并发布了moderationStatus =)我收到以下错误
{
"error": {
"errors": [
{
"domain": "youtube.comment",
"reason": "processingFailure",
"message": "The API server failed to successfully process the request. While this can be a transient error, it usually indicates that the requests input is invalid.",
"locationType": "parameter",
"location": "id"
}
],
"code": 400,
"message": "The API server failed to successfully process the request. While this can be a transient error, it usually indicates that the requests input is invalid."
}
}
我还尝试使用Google开发者API资源管理器将评论状态从“heldForReview”更改为“已发布”,但收到同样的错误。
我真的很感激任何解决方案。