如何使用Symfony注销被禁止用户的活动会话?
这不起作用
security:
always_authenticate_before_granting: true
这是错误
The security option "always_authenticate_before_granting" cannot be used when "enable_authenticator_manager" is set to true. If you rely on this behavior, set it to false
尝试以下代码:
# config/packages/security.yaml
security:
# ...
enable_authenticator_manager: falstr
应该是:
# config/packages/security.yaml
security:
always_authenticate_before_granting: true
enable_authenticator_manager: false
Nilesh的答案是对的,但有一个拼写错误。