Symfony 5 Security: Authenticators
Firewalls & Authenticators
  Unlock this challenge
Login Register

Challenge 1 / 1

Check out the following firewalls setup in security.yaml:

security:
    # ...
    firewalls:
        main_firewall:
            pattern: ^/api/
            # ...
            custom_authenticator: App\Security\MainApiAuthenticator

        products_firewall:
            pattern: ^/api/product
            # ...
            custom_authenticator: App\Security\ProductApiAuthenticator

If I make a request to /api/product, which authenticators will be executed?

Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.