adal4j を使用してログアウトを実装するにはどうすればよいですか? 現在、このライブラリにはこれを行うためのメソッドがありません。これが私の例です。
AuthenticationContext context = new AuthenticationContext("https://login.windows.net/" + "test.onmicrosoft.com" + "/", true, service);
try {
final Future<AuthenticationResult> resultFuture = context.acquireTokenByAuthorizationCode(
code, new URI(redirectUri), new ClientCredential(clientId, clientSecret), "https://graph.windows.net/", null);
result = resultFuture.get();
} catch (InterruptedException | ExecutionException e) {
} catch (URISyntaxException e) {
}