我必须将远程文件的二进制内容发送到API端点。我使用request library读取远程文件的二进制内容并将其存储在变量中。现在变量中的内容已准备好发送,如何使用请求库将其发布到远程api。
我目前所做的工作是:
const makeWitSpeechRequest = (audioBinary) => {
request({
url: 'https://api.wit.ai/speech?v=20160526',
method: 'POST',
body: audioBinary,
}, (error, response, body) => {
if (error) {
console.log('Error sending message: ', error)
} else {
console.log('Response: ', response.body)
}
})
}
我们可以放心地假设audioBinary
具有从远程文件中读取的二进制内容。
当我说它不起作用时,我的意思是什么?
有效负载在请求调试中显示不同。
实际二进制有效负载:ID3TXXXmajor_brandisomTXXXminor_version512TXXX
有效负载显示在调试中:ID3\u0004\u0000\u0000\u0000\u0000\u0001\u0006TXXX\u0000\u0000\u0000\
终端有什么用?
我所知道的终端工作的不同之处在于它也在同一个命令中读取文件的内容:
curl -XPOST 'https://api.wit.ai/speech?v=20160526' \
-i -L \
--data-binary "@hello.mp3"
答案 0 :(得分:6)
请求库中发送二进制数据的选项是encoding: null
。编码的默认值为string
,因此默认情况下内容将转换为utf-8
。
所以在上面的例子中发送二进制数据的正确方法是:
const makeWitSpeechRequest = (audioBinary) => {
request({
url: 'https://api.wit.ai/speech?v=20160526',
method: 'POST',
body: audioBinary,
encoding: null
}, (error, response, body) => {
if (error) {
console.log('Error sending message: ', error)
} else {
console.log('Response: ', response.body)
}
})
}