Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/jpa/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Microsoft graph api 调用/me/calendarView后,重复周期为空_Microsoft Graph Api_Outlook Restapi - Fatal编程技术网

Microsoft graph api 调用/me/calendarView后,重复周期为空

Microsoft graph api 调用/me/calendarView后,重复周期为空,microsoft-graph-api,outlook-restapi,Microsoft Graph Api,Outlook Restapi,我安排了一个定期会议,但是当使用GraphAPI调用/me/calendarView时,事件定期字段返回为null。该事件确实返回了一个seriesMasterId。我在graph explorer和我的代码中尝试过,但没有发现它能够正常工作。我还尝试使用如下查询(其中包含重复): 确切的请求是GETonhttps://graph.microsoft.com/v1.0/me/calendarView/?startdatetime=2018-10-05T14:25:25.049Z&enddatet

我安排了一个定期会议,但是当使用GraphAPI调用
/me/calendarView
时,事件
定期
字段返回为
null
。该事件确实返回了一个
seriesMasterId
。我在graph explorer和我的代码中尝试过,但没有发现它能够正常工作。我还尝试使用如下查询(其中包含重复):

确切的请求是
GET
on
https://graph.microsoft.com/v1.0/me/calendarView/?startdatetime=2018-10-05T14:25:25.049Z&enddatetime=2018-10-06T04:59:59.049Z


我用了这个后还是没有运气。关于为什么重复周期为
null

序列的重复周期模式与序列主机而不是实例一起存在的任何建议

您正在接收一个
seriesMasterId
的事实告诉我们,您正在查看的是一个实例,而不是主机。系列主机将具有
重复
值,但不具有
系列主机

  • 如果
    recurrence==null
    seriesMaster==null
    则它是一个简单的事件
  • 如果<代码>重复!=空和
    系列主机==null
    则它是系列主机
  • 如果
    recurrence==null
    seriemaster!=空
    则它是一个系列中的实例
为了查看重复模式,您需要请求Series Master:

/me/events/{seriesMaster-id}
/me/events/{seriesMaster-id}