FOSUserBundle - BadCredentialsException

2022-08-30 17:24:22

我使用FOSUserBundle来提供用户授权和注册。一切正常,但是当我尝试使用不存在的用户名登录时,我收到此错误:

exception 'Symfony\Component\Security\Core\Exception\BadCredentialsException'
with message 'Bad credentials' in
/var/www/OnTheWay/vendor/symfony/symfony/src/Symfony/Component/Security/Core/Authentication/Provider/UserAuthenticationProvider.php:73
Stack trace:
#0 /var/www/OnTheWay/app/cache/dev/classes.php(120): session_start()
#1 /var/www/OnTheWay/app/cache/dev/classes.php(198): Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
#2 /var/www/OnTheWay/app/cache/dev/classes.php(498): Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('attributes')

我试图找到一个解决方案,但我没有得到任何结果。


答案 1

来自 Github 更改日志

[BC休息]FOSUserBundle:Security:login.html.twig 模板现在在错误变量中接收身份验证异常,而不是错误消息。

要解决此问题,您需要更新自定义登录模板:login.html.twig

从:

{% if error %}
    ... {{ error|trans }} ...
{% endif %}

自:

{% if error %}
    ... {{ error.messageKey|trans(error.messageData, 'security') }} ...
{% endif %}

答案 2

推荐