我正在尝试使用 cURL 发布到 Zapier webhook。
Zapier 的配置是这样的,如果我像这样输入他们的 URL - https://zapier.com/hooks/catch/n/abcd?email=foo@bar.com&guid=foobar
它会收到帖子,但是当我尝试用 cURL 做同样的事情时,它似乎没有收到它。
这是我使用 cURL 发布的代码 -->
<?php
// Initialize curl
$curl = curl_init();
// Configure curl options
$opts = array(
CURLOPT_URL => 'https://zapier.com/hooks/catch/n/abcd',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => 'guid='+ $_POST["guid"] + '&video_title=' + $_POST["video_title"] + '&email=' + $_POST["email"],
);
// Set curl options
curl_setopt_array($curl, $opts);
// Get the results
$result = curl_exec($curl);
// Close resource
curl_close($curl);
echo $result;
?>
当我运行它时,它显示成功,但 Zapier 没有收到它。
在 Zapier 的文档中,有人给出了一个带有适当 cURL 帖子的示例,就像这样 -->
curl -v -H "Accept: application/json" \
-H "Content-type: application/json" \
-X POST \
-d '{"first_name":"Bryan","last_name":"Helmig","age":27}' \
https://zapier.com/hooks/catch/n/Lx2RH/
我猜我在 PHP 文件中遗漏了一些东西,非常感谢您的帮助!