我如何在 CakePHP 3 中找到 SecurityComponent 配置选项?

How can I find the SecurityComponent configuration options in CakePHP 3?

我的 CakePHP 3 应用程序开始出现间歇性的“黑洞”问题。我认为当页面打开时间过长时,CSRF 令牌可能会过期。旧答案(例如 this CakePHP 2 one) point to a csrfExpires config key. However, I can't find any reference to any config keys in the main documentation or the code。 有人可以为我指出正确的文档,或者无法提供您自己的配置密钥信息吗?

安全组件文档中没有任何内容,因为从 CakePHP 3.0 开始,CSRF 令牌不再是安全组件的一部分,它们由(已弃用)CSRF component, or by the CSRF middleware.

处理。

如果它实际上是安全组件黑化了您的请求,那么它可能与 CSRF 无关,因为无效的 CSRF 令牌会触发不同的错误。另请注意,默认情况下,CSRF 令牌持续存在于浏览器会话中。