作为POC,我想为收据(加油站,商店等)做图片,并使用聊天机器人将其发送到我的会计软件。我的问题与使用收据(API)将收集到的收据(图像)发送到会计软件有关。
第一部分(获取附件)将导致带有图像的Arraybuffer。我为此使用了其中一个NodeJS示例(nr 15)。
const attachment = turnContext.activity.attachments[0];
const url = attachment.contentUrl;
let image;
axios.get(url, { responseType: 'arraybuffer' })
.then((response) => {
if (response.headers['content-type'] === 'application/json') {
response.data = JSON.parse(response.data, (key, value) => {
return value && value.type === 'Buffer' ? Buffer.from(value.data) : value;
});
}
image = response.data;
}
).catch((error) => {
console.log(error);
});
我正在努力处理第二部分。将图像发布到会计软件
const requestConfig = {
headers: {
'Authorization': 'Bearer ' + accessToken,
'Content-Type': 'application/x-www-form-urlencoded'
}
};
axios.post(postUrl, image, requestConfig)
.then((response) => { console.log(response); }
).catch((error) => {
console.log(error);
});
};
这将导致400个错误请求。 API可能需要一个文件,而我不能仅发送缓冲区。我使用Postman进行了测试,并通过使用application / x-www-form-urlencoded(通过使用本地存储的图像文件)接受了请求。
发布在缓冲阵列中检索到的图像的最佳实践是什么?
答案 0 :(得分:1)
我认为您的评论正确,您需要首先将其转换为文件。通道不是问题,因为文件将存储在托管机器人的任何位置。 Attachments Sample实际上是has this code,这可以使您接近:
fs.writeFile(localFileName, response.data, (fsError) => {
if (fsError) {
throw fsError;
}
// Send the file
const url = '<yourApiUrl>';
const formData = new FormData();
formData.append('file',fs.createReadStream('<pathToFile>'), { knownLength: fs.statSync('<pathToFile>').size });
const config = {
headers: {
...formData.getHeaders(),
'Content-Length': formData.getLengthSync()
}
};
axios.post(url, forData, { headers });
});
我对// Send the file
部分不超级自信,只是因为我无法针对您的API进行测试。我从here获得了大部分代码。