我知道,授权法可以通过授权重新定向获得,而且已经这样做。
我在上建立了图表目录编号,并且它确实做了工作,但只是针对第一份APIC申请,因此发现的任何替代要求都不存在出入错误。
final String clientId = "YOUR_CLIENT_ID";
final String tenantId = "YOUR_TENANT_ID"; // or "common" for multi-tenant apps
final String clientSecret = "YOUR_CLIENT_SECRET";
final String authorizationCode = "AUTH_CODE_FROM_REDIRECT";
final String redirectUrl = "YOUR_REDIRECT_URI";
final List<String> scopes = Arrays.asList("User.Read");
final AuthorizationCodeCredential credential = new AuthorizationCodeCredentialBuilder()
.clientId(clientId).tenantId(tenantId).clientSecret(clientSecret)
.authorizationCode(authorizationCode).redirectUrl(redirectUrl).build();
if (null == scopes || null == credential) {
throw new Exception("Unexpected error");
}
final TokenCredentialAuthProvider authProvider = new TokenCredentialAuthProvider(
scopes, credential);
final GraphServiceClient<Request> graphClient = GraphServiceClient.builder()
.authenticationProvider(authProvider).buildClient();
它认为,在使用授权办法时,不能把接触打脚。
目前,我试图使整个网络都能获得这一机会,尽管这不是设计的授权守则的正确设想,但我不得不因为现在无法提供客户的缓冲流动。
我要问的是,如何通过图克塞韦茨克利特提供经证实的亚普森要求,以及如何自动获得新机会,以重新标注?