ews-javascript-api
ews-javascript-api copied to clipboard
EWS API for TypeScript/JavaScript - ported from OfficeDev/ews-managed-api - node, cordova, meteor, Ionic, Electron, Outlook Add-Ins
I was wondering, @gautamsi , is it possible to send raw requests through the library, taking advantage of the fact that `ews-managed-api` already takes care of all the authentication parts?...
Hello, We face an issue when we call the API `LoadPropertiesForItems`. Sometimes, when there is network issue, the API never returns, no error message either. We suspect that it was...
Hi, I am trying to use this ews-javascript-api package, but I am facing an issue: - I can use autodiscovery and send an email from a Windows/.Net program, from the...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...
Node.js v18.16.0 ews-javascript-api v0.12.0 @ewsjs/xhr v1.5.0 ```js (async () => { const xhr = new XhrApi().useNtlmAuthentication(credentials.userName, credentials.password); ews.ConfigurationApi.ConfigureXHR(xhr); const service = new ews.ExchangeService(ews.ExchangeVersion.Exchange2016); service.Credentials = new ews.WebCredentials(credentials.userName, credentials.password); service.Url =...
I am encountering a 500 Internal Server Error while attempting to retrieve user availability from AWS WorkMail using the GetUserAvailability operation. I have tried two authentication methods—WebCredentials and AssumeImpersonationRole (OAuthCredentials)....
Got his error in typescript ``` Type 'Promise' is missing the following properties from type 'Promise': finally, [Symbol.toStringTag]ts(2345) ``` Though everything works fine.
I'm using the `FindItems` method to find tasks and one of the Extended Properties (a string) I want to retrieve is quite large, but the value I get back is...
Got this error in typescript: ``` Property 'CreateItem' does not exist on type 'ExchangeService'. Did you mean 'CreateItems'?ts(2551) ExchangeWebService.d.ts(4302, 5): 'CreateItems' is declared here. ``` In JS there are both...
Good afternoon @gautamsi ! When creating / deleting /editing a contact, I get an error with such settings, ``` ExchangeService.ConfigurationApi.ConfigureXHR(new XhrApi.ntlmAuthXhrApi(emailAddress, password, true)); const service = new ExchangeService.ExchangeService(); service.Credentials =...