我正在尝试在laravel应用程序中设置条纹webhooks。我已经拉入spatie的webhook软件包以提供帮助,请在下面链接。
https://github.com/spatie/laravel-stripe-webhooks
我在条带上的端点看起来像
https://myapp.ca/stripe/webhook
开发
我的路线
Route::stripeWebhooks('stripe/webhook');
我已将密钥包含在webhook配置中,
并包含在verifyCsrfToken
中'stripe/*',
我发送考试时得到
<!DOCTYPE html> <html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0;url=https://myapp.ca/login" />
<title>Redirecting to https://myapp.ca/login</title>
</head>
<body>
Redirecting to <a href="https://myapp.ca/login">https://myapp.ca/login</a>.
</body>
谢谢您的帮助。