从组日历中删除事件时出现内部服务器错误

时间:2017-06-29 04:32:45

标签: microsoft-graph

我主要使用.net Microsoft图形客户端。我可以使用API​​创建和更改组日历的事件,但不能删除它们。

我知道我的GraphServiceClient有一个很好的用户上下文令牌。

我的代码是

await client.Groups[GroupId.ToString()].Events[DeadlineId].Request().DeleteAsync();

我还尝试将HTTP客户端“删除”事件用于https://graph.microsoft.com/v1.0/groups/{GroupId}/events/{EventId}

我得到的回应是:

Error Received:
     {
     "error": {
     "code": "ErrorInternalServerError",
     "message": "[0x30140102] BodyTag",
     "innerError": {
     "request-id": "2ab3ad41-b6e2-47d1-88cc-ef3a3640d153",
     "date": "2017-06-29T04:08:38"
     }
     }
 }

我做错了什么,或者微软的问题是否存在问题?

0 个答案:

没有答案
相关问题