将 Curl 命令转换为在 Zapier Webhook 中运行
Posted
技术标签:
【中文标题】将 Curl 命令转换为在 Zapier Webhook 中运行【英文标题】:Converting a Curl command to run in a Zapier Webhook 【发布时间】:2018-11-20 05:17:52 【问题描述】:我试图找到一种方法在 Zapier 上的 Webhook Zap 中运行此 curl
命令,但我似乎无法弄清楚。我将如何在 Webhook 中输入它?以Code
Zap 的形式运行会更好吗?
curl -X POST "https://api.zoom.us/v2/users?access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmY3FvTHlyRVRpR3VmWmw2dW1ZU2NBIiwiaWF0IjoxNTI4Njc0OTUxLCJleHAiOjE1Mjg2OTI5NTF9.fvDzS8-UtHyO_YUF5-eqLyuopAuoL48SRwKxcOV1YrE" -H "accept: application/json" -H "Content-Type: application/json" -d " \"action\": \"create\", \"user_info\": \"email\": \"test@test.com\", \"type\": 1, \"first_name\": \"Chris\", \"last_name\": \"G\", \"password\": \"Test54321\" "
【问题讨论】:
【参考方案1】:David 来自 Zapier 平台团队。幸运的是,这很容易。由于您使用的是嵌套数据,因此您需要使用 Zapier 的 Custom Request 提供的 Webhooks。设置如下:
正文和网址:
标题:
你也可以通过代码来做,你会得到同样的结果。
另外,如果 access_token
仍然存在,请确保在它已公开发布后将其撤消!
【讨论】:
以上是关于将 Curl 命令转换为在 Zapier Webhook 中运行的主要内容,如果未能解决你的问题,请参考以下文章
如何将 curl GET 请求转换为 Zapier Webhook 请求?
设置 Curl 命令以在 Zapier Webhook 中运行