我尝试使用GMail API向node request发送联系请求{{3}}。问题甚至是低谷我生成与文档相同的查询,gmail总是以 400 BadRequest
回复这些是json
形式的标题{ 'Content-Type': 'multipart/mixed; boundary=c2db2692-8877-4159-bf02-03e6c5d3ffbf',
authorization: 'Bearer MY_TOKEN',
'content-length': 231 }
身体内容示例
--c2db2692-8877-4159-bf02-03e6c5d3ffbf
Content-Type: application/http
Content-ID: <item1:12930812@barnyard.example.com>
GET /gmail/v1/users/sneg0k32@gmail.com/messages/14c6c0c43e9bb16b
--c2db2692-8877-4159-bf02-03e6c5d3ffbf--
为什么会这样? 请求会产生额外的空格,并以小写形式生成标题,但我不确定这是否是问题。
nodejs代码示例
request({
method: 'POST',
uri: 'https://www.googleapis.com/batch',
auth: {
bearer: key
},
headers: {
'Content-Type': 'multipart/mixed'
},
multipart: _.map(queries, function(query) {
return {
'Content-Type': 'application/http',
'Content-ID': "<item1:12930812@barnyard.example.com>",
body: 'GET ' + query
}
})
}, function(error, response, body) {
console.log(response.request.headers)
_.map(response.request.body, function(chunk) {
console.log(chunk.toString())
})
console.log(body)
})
UPD:这显然是我如何进行节点调用,通过HTTPTester发送相同请求以及一切正常的问题
UPD2 :决定使用单身汉,但我还没有想到用普通请求导致此问题的原因
答案 0 :(得分:3)
很难解决这样的问题。我很可能会说这是空间。我遇到了类似的问题,因为请求正文因其结构而被视为无效。
大写或小写标题不应该导致问题。
如果有帮助我创建了一个节点模块来创建批量请求:https://www.npmjs.com/package/batchelor。随意使用它。