我正在将我的应用程序与付款服务集成在一起。我能够进行交易,因此通信app-> service可以正常工作,但是我无法从服务本身获取回调,因此service-> app失败,访问被拒绝。
在我的路由器中,我有:
Route::post('/dotpay/callbacks', 'DotpayController@callback');
在VerifyCrsfToken中间件中:
protected $except = [
'dotpay/*'
];
现在,付款服务正在尝试向http://127.0.0.1:8000/dotpay/callback发送回调,但是在付款系统日志中,我得到了:
Access denied.
Access control configuration prevents your request from being allowed at this time. Please contact your service pro.
Laravel的安全配置中可能缺少某些内容吗?