跳过pyrocms中的csrf验证

时间:2019-05-10 09:40:19

标签: laravel pyrocms

我需要跳过我的端点之一的csrf验证。因此,我将路由添加到$except中的Anomaly\Streams\Platform\Http\Middleware\VerifyCsrfToken数组中,

protected $except = [ "/payments/notify" ];

但仍然不能跳过csrf验证。所以,请帮助我。

3 个答案:

答案 0 :(得分:0)

尝试

protected $except = [
     "payments/notify",
     "payments/notify/*"
 ];

答案 1 :(得分:0)

您可以使用api中间件组:

enter image description here

或者您可以使用资源控制器:

enter image description here

答案 2 :(得分:0)

文档中列出了几种方法。此页面应该使您入门(也请参阅页面上的链接以获取更多选项):https://pyrocms.com/documentation/streams-platform/1.6/the-basics/csrf-protection