Zapier没有向我发送自动生成的target_url

时间:2017-10-24 07:39:24

标签: php integration zapier

我试图将自己的PHP应用程序连接(集成)到Zapier ..

但遇到了一些问题......

正如Zapier开发者文档中所述,Zapier应该向我发送一个独特的自动生成的target_url"用于向该网址发送触发器..

enter image description here

这是我订阅网址中的代码

$jsonstring = json_encode($_REQUEST);

//echo $jsonstring;
system("wall 'test - zapier subscribe: $jsonstring'");

但结果是:

test - zapier subscribe: {"api_key":"ddfb"}

我预计结果应该是这样的

test - zapier subscribe: {"api_key":"ddfb", "event_name":"contact.create", "target_url":"https://zapier.com/hooks/123"}

1 个答案:

答案 0 :(得分:0)

我终于解决了......

实际上Zapier给我发了JSON数据......

所以,为了显示JSON数据是

$jsonstring = file_get_contents('php://input');
system("wall 'test - zapier subscribe: $jsonstring'");