我主要使用.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"
}
}
}
我做错了什么,或者微软的问题是否存在问题?