Symfony Automatic Logon

Source: Internet
Author: User
I use the "remeberme" feature in symfony2.3 to implement this function. However, because another program also needs to log on with symfony and exit at the same time, however, there is no interface for the program to call a function similar to the "remeberme", only the login function, so I wonder if it is... I use the "remeber me" feature in symfony 2.3 to implement this feature. However, because another program also needs to log on with symfony and exit at the same time, however, there is no interface for the program to call a function similar to the "remeber me", only the login function, so I wonder if I can monitor the automatic login of sf, then, call the login interface of the program in the listener to Achieve Synchronous login and exit.

Reply content:

I use the "remeber me" feature in symfony 2.3 to implement this feature. However, because another program also needs to log on with symfony and exit at the same time, however, there is no interface for the program to call a function similar to the "remeber me", only the login function, so I wonder if I can monitor the automatic login of sf, then, call the login interface of the program in the listener to Achieve Synchronous login and exit.

You can listen to the security. interactive_login event to intervene in the scenario where each login is successful.

The Event is Symfony \ Component \ Security \ Http \ Event \ InteractiveLoginEvent; your listening method:

Use Symfony \ Component \ Security \ Core \ Authentication \ Token \ RememberMeToken; public function onLogin (InteractiveLoginEvent $ event) {// you can perform synchronization here // if You Want To distinguish between active logon and Automatic Logon: $ token = $ event-> getAuthenticationToken (); if ($ token instanceof RememberMeToken) {// Automatic Logon }}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.