Deleting Microsoft graph fails with ExtensionError

情到浓时终转凉″ 提交于 2019-11-27 08:21:16

问题


I am trying to delete a webhook subscription to Microsoft graph. My http call is:

DELETE https://graph.microsoft.com/v1.0/subscriptions/3ecdf72f-f302-49f6-851c-d04d178a9ref

I got the id of the subscription using:

GET https://graph.microsoft.com/v1.0/subscriptions 

As response I am getting this error:

{
   "error": {         
     "code": "ExtensionError",         
     "message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: Not Found]",         
    "innerError": {"request-id": "2c61eba9-86c8-4420-9276-d6581fd3c5b7",             "date": "2018-10-30T15:11:57"}     
    } 
}

回答1:


We are investigating a bug where sometimes subscriptions will be orphaned in the system. The actual subscription was originally removed and notifications are not being sent. You should expect the subscription to be removed properly from the system in the next few days, as we fix the bug. Sorry for any inconvenience.



来源:https://stackoverflow.com/questions/53067562/deleting-microsoft-graph-fails-with-extensionerror

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!