Reputation: 41
We are trying to build a node js based client application to access calendar of microsoft on-premises exchange server 2016. We studied about outlook calendar api and Exchange Web Services(EWS). As I know, outlook calendar api is not allowed to access on-premises exchange server. I want to know
If we have to use EWS
Upvotes: 0
Views: 3124
Reputation: 1138
you can not use outlook calendar api (Office 365 specific) to access on premises Exchange Servers, these are Office 365 only.
You can actually use ews with nodejs, take a look at ews-javascript-api module. This is complete port of c# counterpart.
EWS does provide all of the features you can do in Outlook, in fact Outlook for MAC is based on EWS only.
if you can be specific to what exactly you are trying to do, I can provide sample code. You can look at official EWS managed API documentation for code examples. most codes are valid except that you have to use promise style, see github readme and issues for more code samples.
Upvotes: 1