通知订阅错误 - Outlook 邮件 API

Notification Subscribe error - Outlook Mail API

我正在尝试订阅来自 Outlook 邮件的通知 API。 但是我不断收到 400 错误。 参考: msdn.microsoft.com/en-us/office/office365/api/notify-rest-operations

$url = 'outlook.office.com/api/v2.0/me/subscriptions';
$headers = array(
   "Authorization: Bearer ".$access_token , 
    "Accept: application/json",             
    "X-AnchorMailbox: ".$user_email         
  );
$curl = curl_init($url);

$data = '{
   "@odata.type":"#Microsoft.OutlookServices.PushSubscription",
   "Resource": "outlook.office.com/api/v2.0/me/messages",
   "NotificationURL": "mydomain.com/listener.php",  
   "ChangeType": "Created"  
}';

$headers[] = "Content-Type: application/json";
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS,$data);
$response = curl_exec($curl);

我还没有设置我的监听器。 400错误是因为监听器?或者是别的什么?。好像认证成功了

这个订阅请求有两个问题 1- Outlook/Office365 通知需要安全通道;即通知 URL 必须是 'https'。这可能是您的 400 错误的原因。 2- 通知 URL 必须启动并且 运行 因为服务在接受订阅之前对此 URL 执行验证。

请参阅文档 https://msdn.microsoft.com/office/office365/APi/notify-rest-operations or getting started concepts https://dev.outlook.com/RestGettingStarted/Concepts/Webhooks 了解更多信息。

谢谢。