gpt4 book ai didi

javascript - 是否可以在 Zapier 代码中启动服务器

转载 作者:行者123 更新时间:2023-12-03 00:08:58 24 4
gpt4 key购买 nike

我们需要发送一个带有“OK”正文的 HTTP CODE = 200,以通过 Zapier 回复通知。

是否可以在 Zapier 中使用以下代码:

var http = require('http');
const server = http.createServer((req,res) => {
res.statusCode = 200;
res.end('OK');
}).listen(80);

它返回一个错误:

Error: You did not define `output`! Try `output = {id: 1, hello: "world"};`

而且回复不起作用。

最佳答案

这里是 David,来自 Zapier 平台团队。

言归正传 - 虽然可以启动一个 http 服务器(据我所知,没有理由不启动),但它不会做你希望做的事情做。也就是说,您无法向传入的 Webhook 发送自定义响应。来自docs :

There is no way to customize the response to the request you send to the Catch Hook URL, as the response is sent before the Zap triggers and runs on the webhook request.

如果您需要这样的行为,我建议运行一个网络服务器。

您看到的特定代码步骤错误与未定义函数的输出有关。有东西进去,就必须有东西出来。您可以根据输入自定义输出并使用该输出,但函数必须返回一些内容(即使只是 {})。

关于javascript - 是否可以在 Zapier 代码中启动服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54832232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com