Zapier 应用程序:使用 GET 请求发送正文
Zapier application: send body with GET request
我正在为 Zapier 中的 intouch api 进行集成。出于某种原因,API 被设置为在 GET
请求的 body
中接收查询,而不是在参数中接收查询。
这一切都在 Postman 中有效,但 z.request
函数似乎忽略了带有 GET
请求的 body
选项属性。
这是我的代码:
const test = (z, bundle) => {
const query = {
matterGuid: "bf508fcf-5f36-4191-93d6-fecd5a7f6a04",
getFields: ["matter.reference"],
};
return z.request({
method: "GET",
url: baseUrl + "/matters",
body: JSON.stringify(query), //I've tried body, json, raw, data, etc
});
};
这是我收到的回复:
{
status: 400,
json: { message: 'No request data received', success: false, errors: [] },
data: { message: 'No request data received', success: false, errors: [] },
content: '{"message":"No request data received","success":false,"errors":[]}',
request: {
method: 'GET',
headers: {
'user-agent': 'Zapier',
'x-intouch-o-token': 'xxxxxxxxxxxxxxxxxxx',
'Content-Type': 'application/json; charset=utf-8'
},
url: 'https://demo.intouch.cloud/api/v2/public/matters',
_addContext: [Function: addContext],
input: {
bundle: [Object],
_zapier: [Object],
_addContext: [Function: addContext]
},
merge: true,
removeMissingValuesFrom: { params: false, body: false },
replace: true,
skipThrowForStatus: false,
_requestStart: 2020-10-24T11:42:37.026Z
},
skipThrowForStatus: false,
headers: Headers {
[Symbol(map)]: [Object: null prototype] {
date: [Array],
'content-type': [Array],
'content-length': [Array],
connection: [Array],
'set-cookie': [Array],
'access-control-allow-origin': [Array],
'access-control-allow-headers': [Array],
'access-control-allow-methods': [Array],
'x-content-type-options': [Array],
'arr-disable-session-affinity': [Array],
'x-frame-options': [Array],
'strict-transport-security': [Array],
'cf-cache-status': [Array],
'cf-request-id': [Array],
'expect-ct': [Array],
'report-to': [Array],
nel: [Array],
server: [Array],
'cf-ray': [Array]
}
},
getHeader: [Function: getHeader],
throwForStatus: [Function],
_addContext: [Function: addContext]
}
也许这不是理想的解决方案,但我找到了解决方法。
I discovered that as part of the middleware 在 z.request
方法中,body
被明确地从 GET
请求中删除。
// No need for body on get
if (req.method === 'GET') {
delete req.body;
}
因此,我能够添加更多中间件以将 body 放回去。幸运的是,在 Zapier 的 before
数组 运行 之后添加了自定义中间件函数自己的中间件,这意味着 body 不受上述功能的影响。
这就是我想出的办法来解决这个问题:
const includeQuery = (request, z, bundle) => {
if (request.method ==='GET'){
if (bundle.inputData.matterGuid && bundle.inputData.getFields){
const query = {
matterGuid: bundle.inputData.matterGuid,
getFields: bundle.inputData.getFields.split(','),
};
request.body = JSON.stringify(query);
}
}
return request;
};
然后将其添加到导出的 object 中的 befores
数组,如下所示:
befores: [includeApiKey, includeQuery],
afters: [handleBadResponses],
我很想听听是否有人对此问题有更好的解决方案。
我正在为 Zapier 中的 intouch api 进行集成。出于某种原因,API 被设置为在 GET
请求的 body
中接收查询,而不是在参数中接收查询。
这一切都在 Postman 中有效,但 z.request
函数似乎忽略了带有 GET
请求的 body
选项属性。
这是我的代码:
const test = (z, bundle) => {
const query = {
matterGuid: "bf508fcf-5f36-4191-93d6-fecd5a7f6a04",
getFields: ["matter.reference"],
};
return z.request({
method: "GET",
url: baseUrl + "/matters",
body: JSON.stringify(query), //I've tried body, json, raw, data, etc
});
};
这是我收到的回复:
{
status: 400,
json: { message: 'No request data received', success: false, errors: [] },
data: { message: 'No request data received', success: false, errors: [] },
content: '{"message":"No request data received","success":false,"errors":[]}',
request: {
method: 'GET',
headers: {
'user-agent': 'Zapier',
'x-intouch-o-token': 'xxxxxxxxxxxxxxxxxxx',
'Content-Type': 'application/json; charset=utf-8'
},
url: 'https://demo.intouch.cloud/api/v2/public/matters',
_addContext: [Function: addContext],
input: {
bundle: [Object],
_zapier: [Object],
_addContext: [Function: addContext]
},
merge: true,
removeMissingValuesFrom: { params: false, body: false },
replace: true,
skipThrowForStatus: false,
_requestStart: 2020-10-24T11:42:37.026Z
},
skipThrowForStatus: false,
headers: Headers {
[Symbol(map)]: [Object: null prototype] {
date: [Array],
'content-type': [Array],
'content-length': [Array],
connection: [Array],
'set-cookie': [Array],
'access-control-allow-origin': [Array],
'access-control-allow-headers': [Array],
'access-control-allow-methods': [Array],
'x-content-type-options': [Array],
'arr-disable-session-affinity': [Array],
'x-frame-options': [Array],
'strict-transport-security': [Array],
'cf-cache-status': [Array],
'cf-request-id': [Array],
'expect-ct': [Array],
'report-to': [Array],
nel: [Array],
server: [Array],
'cf-ray': [Array]
}
},
getHeader: [Function: getHeader],
throwForStatus: [Function],
_addContext: [Function: addContext]
}
也许这不是理想的解决方案,但我找到了解决方法。
I discovered that as part of the middleware 在 z.request
方法中,body
被明确地从 GET
请求中删除。
// No need for body on get
if (req.method === 'GET') {
delete req.body;
}
因此,我能够添加更多中间件以将 body 放回去。幸运的是,在 Zapier 的 before
数组 运行 之后添加了自定义中间件函数自己的中间件,这意味着 body 不受上述功能的影响。
这就是我想出的办法来解决这个问题:
const includeQuery = (request, z, bundle) => {
if (request.method ==='GET'){
if (bundle.inputData.matterGuid && bundle.inputData.getFields){
const query = {
matterGuid: bundle.inputData.matterGuid,
getFields: bundle.inputData.getFields.split(','),
};
request.body = JSON.stringify(query);
}
}
return request;
};
然后将其添加到导出的 object 中的 befores
数组,如下所示:
befores: [includeApiKey, includeQuery],
afters: [handleBadResponses],
我很想听听是否有人对此问题有更好的解决方案。