A java client library to access Exchange web services. The API works against Office 365 Exchange Online as well as on premises Exchange.
@philipwhiuk we read your comment on OfficeDev/ews-java-api#692 "If I don't get any feedback by November, I'll probably just create the org and start this process."
Can this issue OfficeDev/ews-java-api#713 not fix immediately? Our work stuck on the conversation API.
Any help on this error:
List of possible elements expected: 'SortOrder, ParentFolderId' in namespace 'http://schemas.microsoft.com/exchange/services/2006/messages'.
SearchFilter.IsEqualTo idFilter =
new SearchFilter.IsEqualTo(ConversationSchema.Id, conversationId);
FindConversationRequest request = new FindConversationRequest(exchangeService);
request.setIndexedItemView(new ConversationIndexedItemView(1, 0, OffsetBasePoint.Beginning));
request.setConversationViewFilter(idFilter);
request.setFolderId(new FolderIdWrapper(folderId));
Collection<Conversation> singleConversation = request.execute().getConversations();
Hi all
Will EWS JAVA API work after Basic Authentication decommission?
Also, can someone please let me know on how to authenticate with OAuth 2.0 for Exchange online servers (myexchangedomain.com).