我正在尝试连接到Office 365以使用客户端凭据流。我已按照http://blogs.msdn.com/b/exchangedev/archive/2015/01/21/building-demon-or-service-apps-with-office-365-mail-calendar-and-contacts-apis-oauth2-client-credential-flow.aspx
中提到的所有步骤进行操作我正在尝试使用ADAL java库进行连接。
使用以下代码连接和获取邮件:
String authority = "https://login.windows.net/tenant-id/oauth2/authorize";
ExecutorService service = null;
service=Executors.newFixedThreadPool(1);
try {
AuthenticationContext authenticationContext = new AuthenticationContext(authority, false, service);
String certfile = "PfxFinal.pfx";
InputStream pkcs12Certificate=new FileInputStream(certfile);
String token = "";
AsymmetricKeyCredential credential = AsymmetricKeyCredential.create("clientid", pkcs12Certificate,"password");
System.out.println("X509 is fine!");
Future<AuthenticationResult> future=authenticationContext.acquireToken("https://outlook.office365.com", (AsymmetricKeyCredential)credential, null);// authenticationContext.acquireToken("https://outlook.office365.com", credential, null);
System.out.println("Token Received "+future.get().getAccessToken());
token=future.get().getAccessToken();
System.out.println(token);
URL url = new URL("https://outlook.office365.com/api/v1.0/me/folders/inbox/messages?$count=true&$filter=isread%20eq%20false");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Accept","application/json");
//con.setRequestProperty("Authorization",token);
con.setRequestProperty("Authorization","Bearer "+token);
System.out.println("Bearer "+token);
if (con.getResponseCode() != 200) {
throw new RuntimeException("Failed : HTTP error code : "
+ con.getResponseCode());
}
BufferedReader br = new BufferedReader(new InputStreamReader(
(con.getInputStream())));
String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
System.out.println(output);
}
con.disconnect();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我已经给予租户完全许可。还有其他任何事情,我必须做的就是解决这个问题。
答案 0 :(得分:0)
在Azure AD中注册应用程序时,您配置了哪些Exchange Online权限?您应该有Read mail in all mailboxes
或Read and write mail in all mailboxes
。
答案 1 :(得分:0)
你正在解决&#34; / me&#34;端点,适用于&#34; app-only&#34;访问真的没有意义,因为&#34; me&#34;表示邮箱,访问令牌没有用户上下文,可用于确定&#34; me&#34;尝试访问邮箱。对于仅限应用程序访问令牌,您必须使用用户(&#39;邮箱电子邮件地址来访问&#39;)。 &#34; APP-仅&#34;表示没有邮箱或用户信息的应用程序标识。
如果您仍有问题,请告诉我。
谢谢, 的Matthias
答案 2 :(得分:0)
这已解决,以下是完整的工作代码:
公共类AccessToken { public static void main(String [] args){
String authority = "https://login.windows.net/xxxxxxxxxxxxx/oauth2/authorize";
ExecutorService service = null;
service=Executors.newFixedThreadPool(1);
try {
AuthenticationContext authenticationContext = new AuthenticationContext(authority, false, service);
String certfile = "pfx.pfx";
InputStream pkcs12Certificate=new FileInputStream(certfile);
String token = "";
AsymmetricKeyCredential credential = AsymmetricKeyCredential.create("id", pkcs12Certificate,"password");
System.out.println("X509 is fine!");
Future<AuthenticationResult> future=authenticationContext.acquireToken("https://outlook.office365.com", (AsymmetricKeyCredential)credential, null);
token=future.get().getAccessToken();
Long uuid = UUID.randomUUID().getMostSignificantBits();
URL url = new URL("https://outlook.office365.com/api/v1.0/users/email/folders/inbox/messages");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Accept","application/json");
con.setRequestProperty("User-Agent","Testing/1.0 abc/1.1");
Date date = new Date();
SimpleDateFormat ft =
new SimpleDateFormat ("E, dd MM yyyy hh:mm:ss zzz");
System.out.println("Current Date: " + ft.format(date));
String dateString = ft.format(date);
con.setRequestProperty("Authorization","Bearer "+token);
if (con.getResponseCode() != 200) {
System.out.println(con.getHeaderFields());
throw new RuntimeException("Failed : HTTP error code : "
+ con.getResponseCode());
}
BufferedReader br = new BufferedReader(new InputStreamReader(
(con.getInputStream())));
String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
System.out.println(output);
}
con.disconnect();
service.shutdown();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} }
我能够从办公室365获得json响应。我测试的另一种方法是使用Firefox的RestClient插件,使用生成的访问令牌。