试图在我的 http 端点上获取亚马逊 sns 响应。每当我触发 ses 向不存在的电子邮件发送邮件服务以获取退回邮件时,它应该将通知发送到亚马逊 SNS 端点。为了检查这一点,我尝试编写如下代码,但没有得到响应。代码中没有显示任何内容。请帮助我做错了什么
$file = 'posttest.php';
$json = file_get_contents('php://input');
`enter code here`$fp = fopen($file, 'w') or die('Could not open file!');
$arr = json_decode($json, true);
$var = $arr['Message'];
fwrite($fp, $var) or die('Could not write to file');
fclose($fp);