【问题标题】:What limits exist with Youtube Data API V3 BESIDES the quota allocation?除了配额分配之外,Youtube Data API V3 存在哪些限制?
【发布时间】:2019-12-26 23:40:25
【问题描述】:

我的客户有一个应用程序,允许用户从移动应用程序将视频上​​传到 youtube。它们首先被上传到客户端的服务器,然后该服务器通过谷歌的 Youtube Data API V3 包将它们上传到 youtube。随着流量的增加,应用程序有一段时间上传过程返回 400 错误,并且上传到 YouTube 失败。这通常会持续一个半小时左右,然后上传又开始工作。

我已经在开发者控制台区域检查了配额限制。我们不超过每日配额。我还注意到客户端没有使用 QuotaUser 字段(或已弃用的 UserIP 字段),所以下一次中断我进行了测试以查看是否可以缓解停止的设置,但它没有。我也尝试从不同的 IP 上传,以防客户端的服务器 IP 只是暂时被阻止,这也不起作用。

在给定时间段内是否有最大视频上传数量限制,或除配额限制之外的其他限制因素?

【问题讨论】:

  • 我建立了一个邮递员请求,得到了以下信息:{ "error": { "errors": [ { "domain": "youtube.video", "reason": "uploadLimitExceeded", "message": "The user has exceeded the number of videos they may upload." } ], "code": 400, "message": "The user has exceeded the number of videos they may upload." } }

标签: youtube youtube-api youtube-data-api


【解决方案1】:
{
"error": {
    "errors": [
        {
            "domain": "youtube.video",
            "reason": "uploadLimitExceeded",
            "message": "The user has exceeded the number of videos they may upload."
        }
    ],
    "code": 400,
    "message": "The user has exceeded the number of videos they may upload."
}
}

显然,它们限制了您一天可以上传的视频数量。平均历史数据,它似乎是每天约 100 个。必须分成更小的块,因为服务会在不到 24 小时后恢复。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-06-06
    • 2022-01-24
    • 2014-09-15
    • 2020-02-04
    • 1970-01-01
    • 2021-04-21
    • 2015-10-16
    • 1970-01-01
    相关资源
    最近更新 更多