使用Web应用程序客户端访问受Azure AD保护的Web API

时间:2015-01-21 12:54:39

标签: java azure azure-active-directory

enter image description here有人可以解释一下如何使用网络应用客户端访问受保护的网络API吗?

我正在尝试以下链接中提到的内容。但我总是得到

提供的访问权限无效或格式错误。

https://msdn.microsoft.com/en-us/library/azure/dn645542.aspx

这是我用于java的代码

AuthenticationResult result = null;
    try {
        final Future<AuthenticationResult> resultFuture = context.acquireTokenByAuthorizationCode(
                code, new URI(redirectUri), new ClientCredential(clientId, clientSecret), RESOURCE_GRAPH_API, null);
        result = resultFuture.get();
    } catch (InterruptedException | ExecutionException e) {
        LOG.info("Failed to obtain access token: " + e.getMessage());

    } catch (URISyntaxException e) {

    }

0 个答案:

没有答案