我正在使用Adal4j Java库。我已经有一个刷新令牌但想要根据刷新令牌获取访问令牌。
我有以下代码,我无法弄清楚如何定义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 ?
答案 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应用程序集成的有用文档。