码迷,mamicode.com
首页 > 其他好文 > 详细

jwt refresh token

时间:2016-08-05 00:34:53      阅读:413      评论:0      收藏:0      [点我收藏+]

标签:

 

$app->post(auth/refresh-token, [middleware => jwt.refresh, function() {  
    try {  
        $old_token = JWTAuth::getToken();  
        $token = JWTAuth::refresh($old_token);  
        JWTAuth::invalidate($old_token);  
    } catch (TokenExpiredException $e) {  
        throw new AuthException(  
            Constants::get(error_code.refresh_token_expired),  
            trans(errors.refresh_token_expired), $e);  
    } catch (JWTException $e) {  
        throw new AuthException(  
            Constants::get(error_code.token_invalid),  
            trans(errors.token_invalid), $e);  
    }  
  
    return response()->json(compact(token));  
}]); 

 

jwt refresh token

标签:

原文地址:http://www.cnblogs.com/fenle/p/5738729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!