当webhook点击我的网址但失败时,我一直在尝试获取json响应正文。这是我的控制器方法
public function sendSMS(Request $request){
$response = json_decode(file_get_contents('php://input'));
Storage::disk('local')->put('file.txt', Response::json($response));
}
它始终在.txt中保存空响应。你能救我吗?
答案 0 :(得分:0)
这里有很多原因导致错误。 我建议您尝试调试以下原因:
dump(file_get_contents('php:// input'))检查帖子是否有效json
确保您的文件file.txt可写
确保存储配置正确