1

我正在创建一个网络挂钩来接收来自工具 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 代码中发现错误?是标题吗?

提前致谢!

4

0 回答 0