3

I'd like to create a calendar that Outlook can subscribe to which can be updated either in Outlook or on the "calendar service" (Whatever that ends up being).

What protocols does Outlook support for stuff like this, and are those protocols two-way like I described?

e.g. I want Outlook to be able to update an existing calendar item that came from the subscribed calendar.

Doug
  • 6,446
  • 9
  • 74
  • 107

2 Answers2

2

I recently did my own research on this and found the following website which I believe outlines the majority of the options.

Office 365 Supports:

And as @camelsWriteInCamelCase indicates:

Community
  • 1
  • 1
Doug
  • 6,446
  • 9
  • 74
  • 107
1

According to this article:

You must have an email provider that uses Micosoft Exchange ActiveSync. Most common providers like Gmail do.

From Wikipedia:

Exchange ActiveSync (commonly known as EAS) is a proprietary protocol designed for the synchronization of email, contacts, calendar, tasks, and notes from a messaging server to a smartphone or other mobile devices. The protocol also provides mobile device management and policy controls. The protocol is based on XML. The mobile device communicates over HTTP or HTTPS.

If you want to make your own synchronization you can use Outlook REST API. Or you can use any of the existing applications, for example:

camelsWriteInCamelCase
  • 1,655
  • 1
  • 10
  • 15
  • I'm going to go ahead and award you the bounty since you covered two of the major ways, and one I hadn't just found. Thank-you for taking the time to research this. – Doug Nov 11 '17 at 12:07