在尝试从Adal4j中的刷新令牌访问访问令牌时,如何定义AuthenticationCallback?

时间:2016-12-22 23:46:26

标签: azure office365api azure-active-directory azure-ad-graph-api adal4j

我正在使用Adal4j J​​ava库。我已经有一个刷新令牌但想要根据刷新令牌获取访问令牌。

我有以下代码,我无法弄清楚如何定义AuthenticationCallback

     ExecutorService service = Executors.newFixedThreadPool(1);
            AuthenticationContext context = new AuthenticationContext(authority, true, service);

context.acquireTokenByRefreshToken(resultFuture.get().getRefreshToken(), new ClientCredential("8a6....4b6", "J5....EU="), ?????? );

如何定义 AuthenticationCallback

1 个答案:

答案 0 :(得分:1)

我们需要实现AuthenticationCallback接口。以下是一个代码示例供您参考:

import com.microsoft.aad.adal4j.AuthenticationCallback;
import com.microsoft.aad.adal4j.AuthenticationResult;

public class MYAuthenticationCallback implements AuthenticationCallback
{
    public void onFailure(Throwable arg0) {
    // TODO Auto-generated method stub  

    }

public void onSuccess(AuthenticationResult arg0) {
    // TODO Auto-generated method stub
    System.out.println(arg0.getAccessToken());
    }
}

Here是一篇关于将Azure AD与Java Web应用程序集成的有用文档。