在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌
Posted
技术标签:
【中文标题】在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌【英文标题】:Fetch Current Access Token in JHipster UAA based Microservice Applications 【发布时间】:2021-09-11 14:07:55 【问题描述】:我有一个具有基于 UAA 的身份验证 (OAuth 2.0) 的 JHipster 微服务。我已经通过IatTokenEnhancer
在令牌中设置了某些声明。我想在每个请求中使用这些声明的值。 How can I fetch the access token from current request?
【问题讨论】:
【参考方案1】:令牌可通过SecurityContext
访问。以下是代码:
public static Optional<String> getCurrentUserToken()
SecurityContext securityContext = SecurityContextHolder.getContext();
return Optional.ofNullable(securityContext.getAuthentication())
.filter(authentication -> authentication.getDetails() instanceof OAuth2AuthenticationDetails)
.map(authentication -> ((OAuth2AuthenticationDetails) authentication.getDetails()).getTokenValue());
【讨论】:
以上是关于在基于 JHipster UAA 的微服务应用程序中获取当前访问令牌的主要内容,如果未能解决你的问题,请参考以下文章