我正在将我的一个项目从request
切换到更轻量级的东西(例如got,axios或fetch)。一切顺利,但是,在尝试上传文件流(PUT
和POST
)时遇到问题。它适用于请求包,但其他三个都从服务器返回500.
我知道500通常意味着服务器端的问题,但它只与我正在测试的HTTP包一致。当我还原我的代码以使用request
时,它可以正常工作。
这是我当前的请求代码:
Request.put(`http://endpoint.com`, {
headers: {
Authorization: `Bearer ${account.token.access_token}`
},
formData: {
content: fs.createReadStream(localPath)
}
}, (err, response, body) => {
if (err) {
return callback(err);
}
return callback(null, body);
});
这是尝试使用另一个包(在这种情况下,获得)的尝试之一:
got.put(`http://endpoint.com`, {
headers: {
'Content-Type': 'multipart/form-data',
Authorization: `Bearer ${account.token.access_token}`,
},
body: {
content: fs.createReadStream(localPath)
}
})
.then(response => {
return callback(null, response.body);
})
.catch(err => {
return callback(err);
});
根据获得的文档,我也尝试根据其示例使用form-data
包并且我仍然遇到相同的问题。
这两个我可以收集的唯一区别是got
我必须手动指定Content-Type
标头,否则端点会给我一个正确的错误。否则,我不确定2个包是如何使用流构建主体的,但正如我所说,fetch
和axios
也产生与got
完全相同的错误。< / p>
如果您想要使用fetch
或axios
的任何代码段,我也很乐意发布这些代码段。
答案 0 :(得分:1)
看起来这是一个标题问题。如果我直接使用incl_pred
中的标题(即FormData
),然后在我的附加标题中添加(headers: form.getHeaders()
),那么这最终会正常工作。
答案 1 :(得分:0)
我知道这个问题是在不久前提出的,但是我也错过了简单的pipe support from the request package
const request = require('request');
request
.get("https://res.cloudinary.com/demo/image/upload/sample.jpg")
.pipe(request.post("http://127.0.0.1:8000/api/upload/stream"))
// Or any readable stream
fs.createReadStream('/Users/file/path/localFile.jpeg')
.pipe(request.post("http://127.0.0.1:8000/api/upload/stream"))
,并且不得不做一些实验才能从当前库中找到类似的功能。
不幸的是,我还没有使用“ got”,但是我希望以下两个示例可以帮助其他有兴趣使用Native http / https库或流行的{{3 }}库
支持管道运输!
const http = require('http');
const https = require('https');
console.log("[i] Test pass-through: http/https");
// Note: http/https must match URL protocol
https.get(
"https://res.cloudinary.com/demo/image/upload/sample.jpg",
(imageStream) => {
console.log(" [i] Received stream");
imageStream.pipe(
http.request("http://localhost:8000/api/upload/stream/", {
method: "POST",
headers: {
"Content-Type": imageStream.headers["content-type"],
},
})
);
}
);
// Or any readable stream
fs.createReadStream('/Users/file/path/localFile.jpeg')
.pipe(
http.request("http://localhost:8000/api/upload/stream/", {
method: "POST",
headers: {
"Content-Type": imageStream.headers["content-type"],
},
})
)
请注意imageStream.data
的用法,并且它已附加到Axios配置中的data
上。
const axios = require('axios');
(async function selfInvokingFunction() {
console.log("[i] Test pass-through: axios");
const imageStream = await axios.get(
"https://res.cloudinary.com/demo/image/upload/sample.jpg",
{
responseType: "stream", // Important to ensure axios provides stream
}
);
console.log(" [i] Received stream");
const upload = await axios({
method: "post",
url: "http://127.0.0.1:8000/api/upload/stream/",
data: imageStream.data,
headers: {
"Content-Type": imageStream.headers["content-type"],
},
});
console.log("Upload response", upload.data);
})();
答案 2 :(得分:0)
对我来说,当我在 FormData 上添加其他参数时才有效。
之前
const form = new FormData();
form.append('file', fileStream);
之后
const form = new FormData();
form.append('file', fileStream, 'my-whatever-file-name.mp4');
这样我就可以将流从我的后端发送到节点中的另一个后端,等待 multipart/form-data 中名为“file”的文件