检查环回中访问令牌的验证

Check validation of access token in loopback

这是用户模型中环回检查访问令牌是否仍然有效的方法吗?

如果没有这样的方法,我该如何创建它?

感谢您的帮助

the AccessToken.resolve can validate the access token by id

     AccessToken.resolve(req.headers.authorization, function(err, token){
       if(err){
          console.log(err);
       }else{
          console.log(token);
       }
    });