使用带有 lexik jwt 身份验证的 symfony 身份验证器

using symfony authenticator with lexik jwt authentication

我正在做一个 symfony 4 项目: 我使用 API 平台创建了一个记录在案的 API,API 公开要从外部使用的数据,现在, 我想添加一个用于管理的仪表板。 API 路由受 jwt lexik bundle 保护,我生成了 symfony 验证器。

我的 security.yaml 文件:

security:
    encoders:
        App\Entity\AppUser:
            algorithm: auto
    # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
    providers:
        # used to reload user from session & other features (e.g. switch_user)
        app_user_provider:
            entity:
                class: App\Entity\AppUser
                property: email
        # used to reload user from session & other features (e.g. switch_user)
    firewalls:
        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false
        main:
            stateless: true
            anonymous: true
            provider: app_user_provider
            json_login:
                check_path: /authentication_token
                username_path: email
                password_path: password
                success_handler: lexik_jwt_authentication.handler.authentication_success
                failure_handler: lexik_jwt_authentication.handler.authentication_failure
            guard:
                authenticators:
                    - lexik_jwt_authentication.jwt_token_authenticator
                    - App\Security\LoginFormAuthenticator
                entry_point: lexik_jwt_authentication.jwt_token_authenticator
            logout:
                path: app_logout
                # where to redirect after logout
                # target: app_any_route
        refresh:
            pattern:  ^/token/refresh
            ...
    access_control:
        ....
        - { path: ^/administrator, roles: IS_AUTHENTICATED_FULLY }

我想同时使用:jwt 令牌和 symfony 身份验证器来管理管理员角色并添加一个管理系统来处理我的项目的数据。 现在当我打开 url :

http://my-project/administrator

我收到这条消息:

{"code":401,"message":"JWT Token not found"}

这个问题有点老,但只是为了记录,我 运行 遇到了类似的需求,并按照 documentation 的建议使用 isGranted 注释解决了它:

按照 documentation 建议的 User 实体创建 roles 属性 后,您可以验证用户是否有权访问或不在方法或整个 class:

use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;

...

 /**
  * Require ROLE_ADMIN for *every* controller method in this class.
  *
  * @IsGranted("ROLE_ADMIN")
  */

无需在 security.yaml 上声明 access_control 部分。