Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站,用户可以使用 2 种凭据登录:
我已经成功地为第一个案例实现了记住我的功能,但我不知道如何从第二个案例开始。我正在使用 FOSFacebookBundle,但是查看它的文档,我根本没有看到记得我提到过。
如何使用 facebook 登录实现记住我?
只需有安全检查的路线(check_path)
fos_facebook: remember_me: true login_path: /login check_path: _security_check_facebook
和 javascript 中的 auth url
<script>var authurl = '{{ path('_security_check_facebook', {'_remember_me': 1}) }}';</script>
所以添加_remember_me,它会起作用。