我正在使用以下代码将事件插入日历中,并且效果很好。
$.ajax({
url: 'https://graph.microsoft.com/v1.0/me/events',
headers: {
"Authorization": "Bearer <?php echo $_SESSION['access_token'] ?>"
},
type: 'post',
dataType: 'json',
contentType: 'application/json',
success: function (data) {
toastr.success('Event Added In Your Calendar');
},
data: JSON.stringify(person)
});
它将事件插入个人日历,我希望它插入共享日历(称为* PartyCalendar)。有什么办法列出和选择特定的日历。