Symfony Automatic Login issues

Source: Internet
Author: User
I use the "Remeber me" function in Symfony 2.3, but because of my other program and symfony to realize simultaneous login, while exiting, but there is no interface to call me like "remeber me" function, only login function, so , I think it is possible to listen to the SF automatic login, and then in the monitoring inside call the program's login interface, so that you can achieve synchronous login, synchronous exit

Reply content:

I use the "Remeber me" function in Symfony 2.3, but because of my other program and symfony to realize simultaneous login, while exiting, but there is no interface to call me like "remeber me" function, only login function, so , I think it is possible to listen to the SF automatic login, and then in the monitoring inside call the program's login interface, so that you can achieve synchronous login, synchronous exit

You can listen to the Security.interactive_login event to intervene every time you log in to a successful scene.

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){    // 你可以在这里执行同步操作    // 如果你想区分主动登录和自动登录:    $token = $event->getAuthenticationToken();    if ($token instanceof RememberMeToken) {        // 是自动登录    }}
  • 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.