【发布时间】:2021-12-30 02:18:39
【问题描述】:
在过去的几个小时里我已经尝试过几次来处理这个问题,但我认为这与 YouTube Api 或其他一些限制有关。
我目前正在通过 YT API 审核多个 yt 频道的 cmets 部分,如果恶意 cmets 符合特定条件(诈骗/垃圾邮件类型的 cmets),则将它们设置为“heldForReview”状态
几个小时前我一直收到以下错误:
{
"error": {
"code": 400,
"message": "The API server failed to successfully process the request. While this can be a transient error, it usually indicates that the request's input is invalid.",
"errors": [
{
"message": "The API server failed to successfully process the request. While this can be a transient error, it usually indicates that the request's input is invalid.",
"domain": "youtube.comment",
"reason": "processingFailure",
"location": "id",
"locationType": "parameter"
}
]
}
}
我的结果没有任何改变,我想知道 API 是否存在问题,或者我受到了任何限制 没有任何迹象表明我的帐户/项目有任何限制,所以我怀疑不是我。
我想指定我的 api 配额为 500k,但没有达到。即使现在重置配额后,我仍然不断收到错误。
当我尝试使用 API 开发者 (https://developers.google.com/youtube/v3/docs/comments/setModerationStatus) 时也是如此
过去我确实遇到过这种错误,但请求已被处理,并且 cmets 处于“heldForMorderation”状态。
我每次调用处理大量 80 cmets。
【问题讨论】:
标签: youtube-api youtube-data-api google-apis-explorer