Hi, I have been having this issue for some hours now. Adding the login_check pattern to my main_facebook_firewall solves the issues, but raises another one, which is explained below:
I have one main_facebook_firewall for authentication via facebook and one main_firewall for classi authentication via email. main_facebook_firewall comes before main_firewall in my security.yml.
If I add the login_check pattern to my main_facebook_firewall, it will prevent the main_firewall from intercepting the pattern login_check and will cause all classic authentications to fail.
For my main_facebook_firewall, if I put pattern: ^/(demo/secured/|login_check), my main_firewall doesn't work anymore.
And if I put pattern: ^/demo/secured/, I get the error in the title.
Can somebidy help me? Am I missing something? How to make both compatible facebook authentication and mail authentication. Thank you.
Hi, I have been having this issue for some hours now. Adding the login_check pattern to my main_facebook_firewall solves the issues, but raises another one, which is explained below: I have one main_facebook_firewall for authentication via facebook and one main_firewall for classi authentication via email. main_facebook_firewall comes before main_firewall in my security.yml. If I add the login_check pattern to my main_facebook_firewall, it will prevent the main_firewall from intercepting the pattern login_check and will cause all classic authentications to fail.
So here goes my codes
confing.yml
security.yml:
routing.yml
For my main_facebook_firewall, if I put pattern: ^/(demo/secured/|login_check), my main_firewall doesn't work anymore. And if I put pattern: ^/demo/secured/, I get the error in the title.
Can somebidy help me? Am I missing something? How to make both compatible facebook authentication and mail authentication. Thank you.