gpt4 book ai didi

java - 如何通过 ClientId 和 ClientSecret 加载客户端详细信息 - OAuth 2.0

转载 作者:行者123 更新时间:2023-11-30 06:58:23 25 4
gpt4 key购买 nike

我正在使用我自己的ClientDetailsS​​erviceConfigurer实现,所以我这样做:

OAuthConfig.java

@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients.withClientDetails(this.customClientDetailsManager);
}

CustomClientDetailsManager.java

@Service
public class CustomClientDetailsManager implements ClientDetailsService {

final static Logger log = LoggerFactory.getLogger(CustomClientDetailsManager.class);

private final CustomerService customerService;

@Inject
public CustomClientDetailsManager(final CustomerService customerService) {
this.customerService = customerService;
}

@Override
public ClientDetails loadClientByClientId(String clientId) throws ClientRegistrationException {

final Customer customer = customerService.getCustomerByClientId(clientId);
log.debug("****** Customer is: " + customer.getClientId());
log.debug("****** Customer Secret is: " + customer.getClientSecret());


log.debug("****** Client ID Coming from Request is: " + clientId);

final BaseClientDetails details = new BaseClientDetails();
details.setClientId(clientId);
log.debug("*** Client id: " + clientId );
details.setAuthorizedGrantTypes(Arrays.asList(customer.getAuthorizedGrantTypes()));
log.debug("*** AuthorizedGrantTypes: " + Arrays.asList(customer.getAuthorizedGrantTypes()));
details.setScope(Arrays.asList(customer.getScope()));
log.debug("*** Scope: " + Arrays.asList(customer.getScope()));
details.setResourceIds(Arrays.asList(customer.getResourceIds()));
log.debug("*** ResourceIds: " + Arrays.asList(customer.getResourceIds()));
final Set<GrantedAuthority> authorities = new HashSet<GrantedAuthority>();
authorities.add(new SimpleGrantedAuthority(customer.getAuthorities()));
details.setAuthorities(authorities);


authorities.forEach(authority -> {
log.debug("*** Authority: " + authority);
});

log.debug("Returning details...");



return details;
}

所以基本上我是通过 loadClientByClientId(String clientId) 获取我的 ClientId 但我想要一种允许我获取我的客户端 ID 和客户端 key 的方法。

有什么线索吗?谢谢

最佳答案

终于找到解决办法了。

您需要创建一个实现“ClientDetails”的“CustomClientDetails”并返回它。

例如:

public class CustomClientDetails implements ClientDetails {

final static Logger log = LoggerFactory.getLogger(CustomClientDetailsManager.class);

private static final long serialVersionUID = 6725149038554040628L;

private Customer customer;

public CustomClientDetails(final Customer customer) {
this.customer = customer;
}

@Override
public Integer getAccessTokenValiditySeconds() {
return customer.getAccessTokenValidity();
}

@Override
public Map<String, Object> getAdditionalInformation() {
final Set<String> additionalInformation = new HashSet<String>();
additionalInformation.add(customer.getAdditionalInformation());
return null;
}

@Override
public Collection<GrantedAuthority> getAuthorities() {
final Set<GrantedAuthority> authorities = new HashSet<GrantedAuthority>();
authorities.add(new SimpleGrantedAuthority(customer.getAuthorities()));
return authorities;
}

@Override
public Set<String> getAuthorizedGrantTypes() {
final Set<String> authorizedGrantTypes = new HashSet<String>();
authorizedGrantTypes.add(customer.getAuthorizedGrantTypes());
return authorizedGrantTypes;
}

@Override
public String getClientId() {
return customer.getClientId();
}

@Override
public String getClientSecret() {
return customer.getClientSecret();
}

@Override
public Integer getRefreshTokenValiditySeconds() {
return customer.getRefreshTokenValidity();
}

@Override
public Set<String> getRegisteredRedirectUri() {
final Set<String> registeredRedirectUris = new HashSet<String>();
registeredRedirectUris.add(customer.getWebServerRedirectUri());
return registeredRedirectUris;
}

@Override
public Set<String> getResourceIds() {
final Set<String> resourcesIds = new HashSet<String>();
resourcesIds.add(customer.getResourceIds());
return resourcesIds;
}

@Override
public Set<String> getScope() {
final Set<String> scopes = new HashSet<String>();
scopes.add(customer.getScope());
return scopes;
}

@Override
public boolean isAutoApprove(String scope) {
return false; //TODO: for some reason this is always false
}

@Override
public boolean isScoped() {
return true; //TODO: for some reason this is always true
}

@Override
public boolean isSecretRequired() {
return true; //TODO: for some reason this is always true
}

}




public class CustomClientDetailsManager implements ClientDetailsService {

final static Logger log = LoggerFactory.getLogger(CustomClientDetailsManager.class);

private final CustomerService customerService;

@Inject
public CustomClientDetailsManager(final CustomerService customerService) {
this.customerService = customerService;
}

@Override
public ClientDetails loadClientByClientId(String clientId) throws ClientRegistrationException {

final Customer customer = customerService.getCustomerByClientId(clientId);

final CustomClientDetails customClientDetails = new CustomClientDetails(customer);

return customClientDetails;
}

关于java - 如何通过 ClientId 和 ClientSecret 加载客户端详细信息 - OAuth 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41387997/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com