我正在使用此处描述的方法创建OAuth2访问令牌:
Spring OAuth2 - Manually creating an access token in the token store
此方法适用于spring-security-oauth2 1.0.5.RELEASE,但它不适用于spring-security-oauth2 2.0.6.RELEASE。
有没有办法用spring-security-oauth2 2.0.6.RELEASE做同样的事情?
答案 0 :(得分:9)
以下是与Spring-security-oauth2 2.0.6.RELEASE一起使用的示例Rest Controller方法
@RequestMapping("/token")
public OAuth2AccessToken token(Principal principal) {
Set<GrantedAuthority> authorities = new HashSet<GrantedAuthority>();
authorities.add(new SimpleGrantedAuthority("ROLE_USER"));
Map<String, String> requestParameters = new HashMap<>();
String clientId = "acme";
boolean approved = true;
Set<String> scope = new HashSet<>();
scope.add("scope");
Set<String> resourceIds = new HashSet<>();
Set<String> responseTypes = new HashSet<>();
responseTypes.add("code");
Map<String, Serializable> extensionProperties = new HashMap<>();
OAuth2Request oAuth2Request = new OAuth2Request(requestParameters, clientId,
authorities, approved, scope,
resourceIds, null, responseTypes, extensionProperties);
User userPrincipal = new User(principal.getName(), "", true, true, true, true, authorities);
UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(userPrincipal, null, authorities);
OAuth2Authentication auth = new OAuth2Authentication(oAuth2Request, authenticationToken);
OAuth2AccessToken token = defaultTokenServices.createAccessToken(auth);
return token;
}
希望它有所帮助。