我正在使用 Zapier 的 Zaper 代码进行 HTTP POST,但看起来正文是空的。我检查了Zapier 的文档和Node-Fetch,看起来我的语法是正确的,但是当我检查请求时,似乎没有正文。
var testendpoint = 'http://example.com';
var payload = {
'data': [
{
'Date': 'dateparsed',
'Signups': '1'
}
],
'color': {
'Signups': '#2fd75b'
}
};
fetch(testendpoint, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(payload)
}).then(function(response) {
return response.text();
}).then(function(responsebody) {
var output = {response: responsebody};
callback(null, output);
}).catch(function(error) {
callback(error);
});