1

我很难尝试针对 Azure 的特定租户 ID 进行身份验证。我正在使用的代码如下:

public abstract class Azure
{
    private final static String GRAPH = "https://graph.windows.net/";
    private Logger objLogger;
    private String strAccessToken;
    private String strTenantID;
    private String strLogin;
    private String strAuthorize;
    private String strGraph;
    private String strApplicationID;
    private String strUsername;
    private String strPassword;
    public String getAccessToken() throws InvalidKeyException, MalformedURLException, ServiceUnavailableException, IllegalBlockSizeException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException, InterruptedException, ExecutionException
    {
        if (this.strAccessToken == null)
        {
            this.setAccessToken();
        }
        return this.strAccessToken;
    }
    private void setAccessToken() throws MalformedURLException, InterruptedException, ExecutionException, ServiceUnavailableException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException
    {
        AuthenticationContext objContext;
        AuthenticationResult objToken;
        ExecutorService objService;
        Future<AuthenticationResult> objFuture;
        objService = null;
        objToken = null;
        try
        {
            objService = Executors.newFixedThreadPool(1);
            objContext = new AuthenticationContext(this.getAuthorize(), false, objService);
            objFuture = objContext.acquireToken(GRAPH, this.getApplicationID(), this.getUsername(), this.getPassword(), null);
            objToken = objFuture.get();
            this.getLogger().info("Connection to Azure ".concat(this.getClass().getSimpleName().toLowerCase()).concat(" successfully stablished"));
        }
        finally
        {
            objService.shutdown();
        }
        if (objToken == null)
        {
            throw new ServiceUnavailableException("Authentication Service is not available");
        }
        this.strAccessToken = objToken.getAccessToken();
    }
    public void setGraph()
    {
        this.strGraph = GRAPH.concat(this.getTenantID());
    }
}

public class Connection1 extends Azure
{
    private static Connection1 objInstance;
    private Connection1() throws ParameterException, IOException, ParserConfigurationException, SAXException
    {
        super();
        this.setTenantID(<Tenant ID>);
        this.setLogin("https://login.microsoftonline.com/".concat(this.getTenantID()));
        this.setAuthorize(this.getLogin().concat("/oauth2/authorize"));
        this.setGraph();
        this.setApplicationID(<Application ID>);
        this.setAccessToken(null);
        this.setUsername(<username>);
        this.setPassword(<password>);
        this.setLogger();
    }
    public static Azure getInstance() throws ParameterException, IOException, ParserConfigurationException, SAXException
    {
        if (objInstance == null)
        {
            objInstance = new Connection1();
        }
        return objInstance;
    }
}

我有两个类 Connection1 和 Connection2。Connection2 是 Connection1 的副本,我唯一更改的是:

1) 租户 ID

2) 应用程序 ID

3) 用户名

4) 密码。

使用 Connection1,我可以毫无问题地验证和检索数据。Connection2 出现了这个问题,我收到以下错误:

[pool-3-thread-1] ERROR com.microsoft.aad.adal4j.AuthenticationContext - [Correlation ID: 63cc6344-2bc1-4f61-aaa0-a2f07acb172b] Execution of class com.microsoft.aad.adal4j.AcquireTokenCallable failed.
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

这似乎是一个证书错误,所以我在网上研究了一下,他们建议将“DigiCert Baltimore Root”证书添加到我的证书存储中。证书已经在那里了。你知道我应该如何面对吗?

4

2 回答 2

1

实际找到问题。我使用了 Firefox 的 TamperData addIn 并检查每个重定向以获取所有站点及其各自的证书。似乎这个特定租户发生了变化,而不是使用 DigiCert Baltimore Root,而是在 Entrust.net Root 上结束

于 2019-02-05T21:20:22.233 回答
0

仅根据您的错误信息,您可以参考以下两个博客来解决此问题unable to find valid certification path to requested target

  1. https://www.mkyong.com/webservices/jax-ws/suncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/
  2. http://nodsw.com/blog/leeland/2006/12/06-no-more-unable-find-valid-certification-path-requested-target

以上博客都使用了InstallCert工具来服务器证书,可以添加到本地keystore。请按照 GitHub 存储库的 README 进行操作。

同时,只是我的猜测,我认为可能的原因是 JVM 中证书存储的资源竞争。因此,如果您在 JVM 实例中运行Connection1Connection2您可以尝试在它们自己的独立 JVM 实例上单独运行它们,或者尝试复制目录并在命令行中JAVA_HOME设置临时JAVA_HOME和环境变量以在没有任何资源共享的情况下运行另一个他们。PATHConnection2

于 2019-02-05T06:07:54.240 回答