我有一个要求,我需要使用 microsoft graph api 访问日历的公开共享 URL(也想使用 API 共享日历)。但它似乎无法使用 GraphServiceClient。我想要实现的是
var cal = await graphClient...<anything>....Calendar.Request(options).GetAsync();
if(cal.CanShare.HasValue && cal.CanShare.Value)
{
// get the published URL of the calendar here
}