I recently started using the Office 365 API and can now successfully authenticate and get a token. Now I want to query the user\'s Exchange for meetings. To do this I run th
It turns out there is a typo in the .NET getting started calendar code that uses a bad URI for the constructor of the OutlookServicesClient
object. That line should read:
OutlookServicesClient client = new OutlookServicesClient(
new Uri("https://outlook.office.com/api/v2.0"),
The sample was missing the v
in the URI, which was causing the error.