Avrom
Avrom
Hi, This area is for discussion of the EWS API for Java. Try looking here https://github.com/dseph/EwsEditor for help with that editor.
Do you have a code sample of what you were using to test the AutoDiscover service? I tried this myself against Office365 using v.2.0 and it worked, but was very...
Interesting. I'm using a different method to look up the URL. Here is my code: ``` public static URI autoDiscoverURI(String emailAddress, String password) { URI url = null; ExchangeService service...
@beders MS Graph API for Java is available here: https://github.com/microsoftgraph/msgraph-sdk-java That would be ok for those who are a) starting a new app and b) using Office 365. It will...
@celloni This has now been deferred to the second half of 2021. https://developer.microsoft.com/en-us/office/blogs/deferred-end-of-support-date-for-basic-authentication-in-exchange-online/
FYI: This is still an issue with version 3.18. To reproduce: ``` ApiClient apiClient = new ApiClient(); apiClient.setOAuthBasePath("account-d.docusign.com"); URI uri = apiClient.getAuthorizationUri(clientId, List.of("signature"), "http://localhost/", "code"); System.out.println(uri); ``` This results in...
I've encountered this issue as well. Specifically, the issue is in the `stop` method which fails due to an `InterruptedException`, `reconnect` works fine.