无法从webhook laravel获得json身体反应

时间:2017-02-23 12:08:21

标签: php json laravel-5

当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中保存空响应。你能救我吗?

1 个答案:

答案 0 :(得分:0)

这里有很多原因导致错误。 我建议您尝试调试以下原因:

  1. dump(file_get_contents('php:// input'))检查帖子是否有效json

  2. 确保您的文件file.txt可写

  3. 确保存储配置正确