Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MicrosoftGraph on Enterprise Exchange Server [duplicate]

Can the MicrosoftGraph API, specifically the WebHooks, be used for accounts on an enterprise / on-premise Exchange server as opposed to Office 365. All the documentation I have seen for setting up the app required for OAuth authentication use Azure.

like image 207
Graham Wright Avatar asked Oct 24 '17 12:10

Graham Wright


1 Answers

There is a "hybrid deployment" model currently in preview that allows you to traverse both on-prem and online mailboxes using Microsoft Graph. You can read about the infrastructure requirements at On-Premises Architectural Requirements for the REST API.

One note on authentication, Microsoft Graph uses OAUTH tokens to handle authentication. These tokens are issued by Azure AD but this does not mean that your entire infrastructure needs to be hosted on Azure, only that your AD be synced with an Azure AD instance using Azure AD Connect. Depending on the size of the organization you may even be able to use the Free trier of Azure AD. I highly recommend taking a look into this configuration as Azure AD is quickly becoming an assumed prerequisite for new APIs and services.

like image 105
Marc LaFleur Avatar answered Jan 04 '23 08:01

Marc LaFleur