我想将zapier与我的php网站集成。在身份验证的步骤中,我将http post请求放入一个php文件中,但得到的用户名/密码参数为空。
<?php
file_put_contents('auth.txt', "here is my zapier auth data" . implode('->', $_POST));
$username = $_POST["username"];
$password = $_POST["password"];
POST在zapier消息响应中包含数据。