为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"
}
所有密钥和机密都可以使用,因为我可以阅读当前的订阅。
可能会发生这种情况吗?