如何使用webhook将facebook主要表单与自定义开发的CRM(codeigniter)集成
我需要在我的crm中低于铅场值。
在函数内部,我编写了如下代码
$challenge = $_REQUEST['hub_challenge'];
$verify_token = $_REQUEST['hub_verify_token'];
if ($verify_token === 'abc123') {
echo $challenge;
}
$input = json_decode(file_get_contents('php:://input'), true);
error_log(print_r($input, true));
$file = "./assets/tmp/post_fb_test".time().".txt"; file_put_contents($file,$input); chmod($file, 0777);
这里我得到一个空白文件..我没有得到任何价值..请帮我整合铅形与crm
答案 0 :(得分:2)
if($_GET['hub_challenge']) {
echo $_GET['hub_challenge'];
} else {
$input = file_get_contents('php://input');
if($input)
{
$input_data = json_decode($input, true);
$file = "./assets/tmp/lead_test".time().".txt";
file_put_contents($file,$input);
chmod($file, 0777);
}
}