我有一个缓冲区,我从用户上传的图像中获取,然后我想在multipart / form-data POST请求中发送到另一个API。
我遇到了与请求对象有关的问题。我想发送流或缓冲区而不是访问本地服务器文件系统/创建临时文件。我对流的概念很新。
我从API发送中得到了正确的答复
image_file: fs.createReadStream('image.png')
但是当我尝试时:
image_file: data // buffer
我从API收到一条错误消息,说我错过了image_file
参数。
请帮忙!
使用(Face ++)的API的以下是我的问题代码:
app.post('/', (req, res) => {
const url = 'https://api-us.faceplusplus.com/facepp/v3/detect';
let data = [];
req.on('data', (chunk) => {
data.push(chunk)
})
req.on('end', (req, res) => {
data = Buffer.concat(data);
const formData = {
api_key: process.env.FACEPP_API_KEY,
api_secret: process.env.FACEPP_API_SECRET,
// image_file: fs.createReadStream('image.png') // works
image_file: data // doesnt work
}
const options = {
uri: url,
method: 'POST',
formData
}
request(options, (err, response, body) => {
if (err) console.log(err)
console.log(body)
})
})
})
答案 0 :(得分:7)
经过一番游戏后,我有以下代码,它对我来说很有效。我使用Multer中间件(https://github.com/expressjs/multer)进行原始的分段上传。感兴趣的是,除非您指定文件名选项,否则请求似乎不能很好地上传文件。
const multer = require('multer');
const upload = multer();
app.post('/', upload.any(), (req, res) => {
const url = 'https://api-us.faceplusplus.com/facepp/v3/detect';
console.log('Image upload complete, creating request to: ' + url);
var formData = {
api_key: process.env.FACEPP_API_KEY,
api_secret: process.env.FACEPP_API_SECRET,
image_file: {
value: req.files[0].buffer, // Upload the first file in the multi-part post
options: {
filename: 'image_file'
}
}
};
const options = {
uri: url,
formData: formData,
method: 'POST'
}
request(options, (err, response, body) => {
console.log('Request complete');
if (err) console.log('Request err: ', err);
console.log(body)
})
})
我收到的回复如下:
{
"image_id": "GuF0MUPoaTcL/rbbcg+2kA==",
"request_id": "1520789753,d913cce4-118e-4893-a1ee-d1ace2b6a65b",
"time_used": 142,
"faces": [{
"face_rectangle": {
"width": 183,
"top": 125,
"left": 220,
"height": 183
},
"face_token": "8b8e327edfc10730f344b1465934a478"
}]
}
我使用curl测试了图像上传到我的本地服务器,如下所示:
curl -v -i -F "data=@smiling_woman.jpg" -H "Content-Type: multipart/form-data" -X POST http://localhost:3000/