简体   繁体   English

记住我令牌超时在Laravel 5.4中不起作用

[英]Remember Me token timeout not working in laravel 5.4

In Laravel 5.4 I have customized login method of authentication module and done user login using below method: 在Laravel 5.4中,我自定义了身份验证模块的登录方法,并使用以下方法完成了用户登录:

if($request->remember== 1)
    Auth::loginUsingId($user_id,TRUE);
else
    Auth::loginUsingId($user_id);

Here i have set second argument TRUE when remember me checkbox checked. 在这里,我选中了“记住我”复选框后,将第二个参数设置为TRUE。

And customize cookie time in sendLoginResponse method: 并在sendLoginResponse方法中自定义cookie时间:

$customRememberMeTimeInMinutes = 5;  
$rememberTokenCookieKey = Auth::getRecallerName(); 
Cookie::queue($rememberTokenCookieKey, Cookie::get($rememberTokenCookieKey), $customRememberMeTimeInMinutes);

After done above step my remember me token not working as expected(after 5 min i refreshed browser and still user logged in). 完成上述步骤后,我记得我的令牌无法按预期工作(5分钟后,我刷新了浏览器,仍然用户登录了)。

Default Session configuration is like this 默认会话配置是这样的

'lifetime' => 120,

'expire_on_close' => false,

Please suggest what i am doing wrong? 请指出我做错了什么?

Remember me only avoids filling in the login page. 记住我只是避免填写登录页面。 It does not preserve the session. 它不保留会话。 Default lifetime is 120 (minutes) if the user does not submit an additional request in this time then the session is lost, and will be garbage collected at some point. 如果用户此时未提交其他请求,则默认生存期为120(分钟),则会话将丢失,并在某些时候被垃圾回收。 If you want to change session timeout time then you have to go to config/session.php 如果要更改会话超时时间,则必须转到config/session.php

/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/

'lifetime' => 120,  // number of minutes you want to increase / decrease

'expire_on_close' => false,

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM