dongxie7683 2015-03-03 00:46
浏览 57
已采纳

启用“记住我”时,在Symfony 2应用程序中注销用户

I'm looking for a way to log user out of Symfony 2 application, but could not find a way to do it properly.

I've tried an approach described here: Symfony2: how to log user out manually in controller?

$this->get('security.context')->setToken(null);
$this->get('request')->getSession()->invalidate();

It's working fine when "remember me" is disabled, however, when I enable it, it's not working. It looks like user is automatically re-authenticated back again by this cookie.

remember_me:
    key:      "%secret%"
    lifetime: 31536000
    path:     /
    domain:   ~
    always_remember_me: true

What is the proper way to log user out of Symfony 2 application? Do I need to additionally delete this cookie from server-side?

  • 写回答

4条回答 默认 最新

  • doubo4824 2015-03-03 00:57
    关注

    You may have to call the session-storage's save() (Documentation) method explicitly.

    Force the session to be saved and closed.

    Further you can request to delete the session- and/or remember_me-cookies via response headers.

    The session-cookie's name is configured as the container-parameter framework.session.name and defaults to the session.name value from your php.ini.

    $cookieName = $this->container->getParameter('framework.session.name');
    $response->headers->clearCookie( $cookieName );
    

    The remember_me-cookie's name can be configured in your security configuration.

    security:
        firewalls:
            your_firewall:
                remember_me: 
                    name: neverforget # <- cookie-name
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部