在将cron用于Laravel Command时,我遇到问题,无论何时php /path/to/artisan/ command:cron
执行该函数都会导致CSRF verification failed
。
关于如何在Laravel命令上禁用CSRF验证是否有任何解决方法? 我找到了有关禁用CSRF验证的路由的文档,但是我需要命令。
答案 0 :(得分:0)
您可以排除类似:
protected $except = [
'stripe/*',
'http://example.com/foo/bar',
'http://example.com/foo/*',
];
有关更多详细信息,请参见 https://laravel.com/docs/5.7/csrf#csrf-excluding-uris