gpt4 book ai didi

node.js - 如何提高包跟随重定向中的 maxBodyLength 限制

转载 作者:太空宇宙 更新时间:2023-11-03 21:49:04 24 4
gpt4 key购买 nike

使用 NPM 包“googleapis”将视频上传到 Youtube,出现以下错误:

Error: Request body larger than maxBodyLength limit

如何手动提高限制以避免此错误?

最佳答案

只需在开始上传到 YouTube 之前添加以下代码:

const followRedirects = require('follow-redirects');
followRedirects.maxRedirects = 10;
followRedirects.maxBodyLength = 500 * 1024 * 1024 * 1024; // 500 GB

它导入包“followRedirects”并将限制设置为 500GB。

关于node.js - 如何提高包跟随重定向中的 maxBodyLength 限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49006200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com