Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我应该在哪里配置 mollie webhook url。我在 mollie 文档中找不到任何解决方案。在我的 laravel 项目中,我已经有了路由设置和控制器。
Route::post('bestelling/webhook', 'FrontOrderController@webhook');
对于来自第三方的 webhook,您可能必须在路由上禁用 CSRF。这可以VerifyCsrfToken.php在App\Http\Middleware
VerifyCsrfToken.php
App\Http\Middleware
文档:https ://laravel.com/docs/5.7/csrf#csrf- exclude-uris