我正在使用Ionic和Satellizer以及Laravel和JWT auth来创建API。
一切都很好,但一个问题是在一小时左右后从本地存储中删除令牌。
我真的希望令牌存在直到用户退出,因为他们将使用手机应用程序并且不希望每次都登录。
这是第一次使用令牌的经验,所以我不确定这通常是如何工作的。我想人们通常会永久存储令牌吗?
这是在我的离子控制器中:
$auth.login(credentials).then(function() {
$http.get($rootScope.apiURL + 'authenticate/user').success(function(response){
var user = JSON.stringify(response.user);
localStorage.setItem('user', user);
});
})
这将设置Satellizer令牌以及本地存储中的用户信息。
在Laravel中进行API调用:
public function authenticate(Request $request)
{
$credentials = $request->only('email', 'password');
try {
// verify the credentials and create a token for the user
if (! $token = JWTAuth::attempt($credentials)) {
return response()->json([
'error' => 'invalid_credentials',
'error_message' => 'Invalid username or password'
], 401);
}
} catch (JWTException $e) {
// something went wrong
return response()->json(['error' => 'could_not_create_token'], 500);
}
// if no errors are encountered we can return a JWT
return response()->json(compact('token'));
}
答案 0 :(得分:2)
您可以在config / jwt.php中增加到期时间,默认为60分钟
System.out.println(URLDecoder.decode("%25", "UTF-8"));