asim-ali-peerzada wrote a reply+100 XP
4mos ago
Testing Stripe Webhooks 403 error
For a 403 error with webhooks, you have to check your existing middlewares they are intercepting that webhook request and causing the 403. Simply add this inside the handle in middleware: if ($request->is('stripe/*')) { return $next($request); } You're good to go....