创建订阅时Microsoft Graph Api中的错误

时间:2020-11-12 02:16:16

标签: microsoft-graph-api microsoft-teams microsoft-graph-sdks microsoft-graph-teams

为callRecords创建订阅时,端点返回错误。

POST API请求发送至: https://graph.microsoft.com/v1.0/subscriptions

有效载荷:

for index,rows in df2.iterrows():
    df3=df1.copy()  
    filter1=(df1['SN']==rows['SN'])
    filter2=(df1['Date']>=rows['con_start_date'])
    filter3=(df1['Date']<rows['con_end_date'])
    mask=filter1 & filter2 & filter3
    df1.loc[mask,'con_type']=rows['con_type']

服务器的响应

 {
   "changeType":"created",
   "notificationUrl”:”valid_ngrok_here”,
   "resource":"communications/callRecords",
   "expirationDateTime":"2020-11-20T18:23:45.9356913Z",
   "latestSupportedTlsVersion":"v1_2",
   "clientState":"SecretClientState"
}

所有密钥和机密都可以使用,因为我可以阅读当前的订阅。

我还为callRecord读数设置了所有适当的权限: enter image description here

可能会发生这种情况吗?

0 个答案:

没有答案