Instamojo 支付集成 - Webhook 问题

Instamojo Payment Integration - Webhook Issue

已成功提取来自 instamojo api 的响应,但问题是 Webhook 服务无法正常工作。在这里,我在请求中提供了一个 webhook url,我想排除 CSRF 验证,因为我在中间件中包含了 Except array with 'instamojo/*' 但仍然没有用。

class VerifyCsrfToken extends Middleware
{
    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        'instamojo/*',
    ];
} 

当前路线

Route::post('webhook','HomeController@webhook');

在中间件的Except部分添加posting route name即可解决。 这里我在我的中间件中添加了 webhook/*

路线

Route::post('webhook','HomeController@webhook');

中间件

class VerifyCsrfToken extends Middleware
{
    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        'webhook/*',
    ];
}

它对 fine.Thank 你有效。