Getting Events from Calendar using C# and Microsoft Graph SDK
问题 I'm trying to develop a console app to list, remove and add events to a specific user's calendar. I'm developing a business process. I'm starting by listing events. Calendar cal = client .Users["UserName@CompanyName.com"] .Calendars["AAMkAGIzZDM4O...."] .Request() .GetAsync() .Result; I get the correct calendar back but the Events collection is null. There are 13 events in the calendar. I have Calendar Read/Write permissions. Any ideas? 回答1: I don't have an environment to test the c# Graph