谁能告诉我如何从推送通知响应中获取响应数据。我目前只能从标题获取数据,但是$ _POST是一个空数组。有人可以将我推向正确的方向吗? (我收到来自Google和Outlook的通知。)
我的通知文件包含以下代码:
header('Content-Type: text/html; charset=utf-8');
header("HTTP/1.1 200 OK");
file_put_contents('response-data.txt', serialize($_POST));
答案 0 :(得分:1)
尝试类似的方法:
file_put_contents('response-data.txt', file_get_contents('php://input'));