我正在创建一个Web挂钩,以便从工具Looker(http://looker.com)接收JSON POST。 我的问题是我没有收到数据,虽然我确信Looker发送数据(已经使用https://requestb.in进行了测试)。数据作为附加的JSON有效负载发送。
我的PHP代码是这样的:
<?php
setlocale(LC_ALL,'da_DK.UTF8');
header("Content-Type: application/json; charset=utf-8");
require("functions.php"); //a file containing some functions
$json = file_get_contents('php://input');
jsonLog($json); //a small function that writes the content to a file (for testing)
?>
通过邮递员测试我的网络钩子时,一切正常。
我的PHP代码中是否有人发现错误?这是标题吗?
提前致谢!