Is it possible to use dual authentication with symfony2?

Users should be able to authenticate themselves with facebook and my own system.

I've read the documentation, and I know that there is the FacebookBundle with I can authenticate a user with facebook, but I don't know how to combinate the two.

Thanks, Davis

link|improve this question
feedback

1 Answer

Yes. "You can configure a firewall to use more than one authentication mechanisms" : http://symfony.com/doc/2.0/book/security/authentication.html#authentication-mechanisms

I didn't try it yet but I think it should be something like:

security:
    firewalls:
         public:
             pattern:   ^/.*
             form_login: true
             fos_facebook:
                 login_path: ^/facebook$
                 check_path: ^/facebook-check$
                 default_target_path: /facebook
                 provider: my_fos_facebook_provider

You can define multiple providers as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.