从Looker接收JSON - 在PHP中

时间:2017-12-11 09:06:25

标签: php json webhooks looker

我正在创建一个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代码中是否有人发现错误?这是标题吗?

提前致谢!

0 个答案:

没有答案