条带化Webhooks使用Spatie Webhook在laravel应用程序上返回302

时间:2018-11-08 18:09:54

标签: laravel-5 stripe-payments webhooks spatie

我正在尝试在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> 

谢谢您的帮助。

0 个答案:

没有答案