Laravel 回调 URL with file_get_contents('php://input')



在vanilla php中,我会创建一个只有的callbak url

try
{
//response content type application/json
header("Content-Type:application/json");
//read incoming request
$postData = file_get_contents('php://input');
.......
......

但在拉拉威尔,我还没有得到一个明确的解释,如何实现同样的

我试过使用

$postData = Request::getContent();

但它返回空白

如果您需要请求中的数据,请使用(new IlluminateHttpRequest())->all()或DI

public function someAction(IlluminateHttpRequest $request)
{
dd($request->all());
}

相关内容

  • 没有找到相关文章

最新更新