Symfony安全组件 - 无法在令牌有效内容中找到密钥\“username \”

时间:2018-05-31 17:38:43

标签: php api symfony security authentication

通过下面列出的这个配置,我遇到了一些奇怪的问题,我无法单独解决,因为我在Symfony中太新了。

security:
    encoders:
        App\Api\User\Entity\User:
            algorithm: bcrypt
            cost: 12
    # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
    providers:
        users:
            id: 'App\Api\Auth\Provider\AuthProvider'
    firewalls:
        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false
        # Api will be stateless, a token will be generated
        api_login:
            pattern: /api/login
            stateless: true
            context: api
            anonymous: true
            provider: users
            form_login:
                check_path: /api/login
                username_parameter: email
                password_parameter: password
                success_handler: lexik_jwt_authentication.handler.authentication_success
                failure_handler: lexik_jwt_authentication.handler.authentication_failure
                require_previous_session: false
        # For web calls no need to be stateless
        web_login:
            pattern: /login
            stateless: false
            context: web
            anonymous: true
            provider: users
            guard:
              entry_point: 'App\User\Auth\Guard\LoginAuthenticator'
              authenticators:
                - 'App\Api\Auth\Guard\LoginAuthenticator'
            form_login:
              login_path: /login
              check_path: /login
        api:
            provider: users
            context: api
            pattern: ^/api
            stateless: true
            anonymous: true
            guard:
                authenticators:
                    - lexik_jwt_authentication.jwt_token_authenticator
        web:
            provider: users
            context: web
            pattern: ^(/user|/template)
            stateless: false
            anonymous: true
            guard:
                authenticators:
                    - 'App\Api\Auth\Guard\LoginAuthenticator'
        main:
            pattern:  ^/
            anonymous: ~
            logout:
              path: /logout
              target: /login



    # Easy way to control access for large sections of your site
    # Note: Only the *first* access control that matches will be used

    access_control:
        - { path: ^/api, roles: ROLE_USER }
        - { path: ^/user/*, roles: ROLE_USER }
        - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }

我:

  • 具有有状态模式的安全区域的后台办公室
  • 具有无状态模式的安全区域的API(JWT令牌)

现在这里有什么工作:

  • 我可以使用我的HTML表单连接并查看我的角色和数据(电子邮件)
  • 当我连接(HTML)时,我立即重定向/ user / profile 端点并查看我的信息

  • 我可以调用我的API登录端点并获取JWT令牌

这里什么不起作用

  • 从API调用中,我有一个没有用户名(null)的令牌
  • 如果你试图从api访问安全区域,我会列出错误 以下

我的解码令牌:

{"alg":"RS256"}{"roles":["ROLE_USER"],"username":null,"iat":1527787676,"exp":1527791276}

错误:

{
    "code": 401,
    "message": "Unable to find key \"username\" in the token payload."
}

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

我的身份字段是电子邮件,而非用户名。

在jwt配置文件中,我只需要输入:

lexik_jwt_authentication:
    private_key_path: '%kernel.project_dir%/%env(JWT_PRIVATE_KEY_PATH)%'
    public_key_path: '%kernel.project_dir%/%env(JWT_PUBLIC_KEY_PATH)%'
    pass_phrase: '%env(JWT_PASSPHRASE)%'
    user_identity_field: email #this line