I'm trying to set up Adyen notifications in my webshop.
https://docs.adyen.com/development-resources/notifications/understand-notifications
When I test the HTTP post with Adyen test page I get a 301 response, but when I test the HTTP post with a custom form the route works.
Route in web.php:
Route::name('shop.checkout.adyen-notification')->post('/adyen-notification', 'Shop\CheckoutController@adyenNotification');
Settings in VerifyCsrfToken.php:
protected $except = ['*/adyen-notification?*'];
Custom form:
<form method="post" action="https://example.com/adyen-notification?originalReference=&reason=&merchantAccountCode=Test&eventCode=NOTIFICATIONTEST&operations=&success=true&paymentMethod=bankTransfer_BE¤cy=EUR&pspReference=test_NOTIFICATIONTEST_1&merchantReference=testMerchantRef1&value=11099">
<input type="submit" value="SUBMIT">
</form>
I can't figure out why it is giving me a 301 response.