使用NPM包'googleapis'将视频上传到Youtube,我有以下错误:
Error: Request body larger than maxBodyLength limit
如何手动提高限制以避免此错误?
答案 0 :(得分:2)
在开始上传到Youtube之前,只需添加以下代码:
const followRedirects = require('follow-redirects');
followRedirects.maxRedirects = 10;
followRedirects.maxBodyLength = 500 * 1024 * 1024 * 1024; // 500 GB
导入包'followRedirects'并将限制设置为500GB。