Instamojo Payment Integration - Webhook Issue

724 Views Asked by At

The response from the instamojo api is successfully extracted but the issue is that, the webhook service is not working. In this I've provided a webhook url in request and i want to exclude the CSRF verification, for that I've included Except array with 'instamojo/*' in middleware but still no use.

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

The current Route

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

There are 1 best solutions below

0
On BEST ANSWER

It can be solved by adding the posting route name in middleware's Except section. Here I added webhook/* in my middleware.

Route

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

Middleware

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

It work's fine.Thank you.