I have a requirement where I need to access publicly shared URL of a calendar(also want to share calendar using the API) using microsoft graph api. But it seems like its not available using GraphServiceClient. What Im trying to achieve is
var cal = await graphClient...<anything>....Calendar.Request(options).GetAsync();
if(cal.CanShare.HasValue && cal.CanShare.Value)
{
// get the published URL of the calendar here
}
graphClient.Me
how's that publicly available? that resource is specific to your account – Aarif