我有dingo / laravel我的api。通常工作没有问题的移动(Android)。
我的AutingController @ding in dingo / laravel:
public function tokenRefresh()
{
$token = JWTAuth::getToken(); // Header:Auth..Baerer ...
if (!$token) {
throw new BadRequestHttpException('Token not provided');
}
try {
$token = JWTAuth::refresh($token);
} catch (TokenInvalidException $e) {
throw new AccessDeniedHttpException('The token is invalid');
}
return $this->response->withArray(['token' => $token]);
}
我用nw.js创建了另一个应用程序,我用它来申请模块。 我的示例登录请求:
requestify.request(this.authUrl, {
method : 'POST',
body : {
email: document.getElementById('email').value,
password: document.getElementById('password').value
},
headers : {
'X-Forwarded-By': 'me'
},
dataType: 'json'
}).then(function (response) {
var body = response.getBody();
alert(body.token);
});
其请求通常会返回有效令牌。没关系。
到期令牌怎么样? 我该怎么办? 也许,有点像之前所有请求的ajaxSetup。 我需要在令牌过期时自动刷新令牌。 你推荐什么?