我在使用 Microsoft Graph Api 创建团队时遇到问题。我可以获取/创建组,但是当我尝试获取/创建团队时出现错误。我正在使用邮递员,该组有所有者和成员,就像 MS 的文档一样,也有它要求组的权限。如果有人可以帮助我,因为我到处寻找相同的错误但没有找到它。
PUT https://graph.microsoft.com/v1.0/groups/{id}/team
Headers: Authorization: bearer token and content-type: json
身体是
{
"memberSettings": {
"allowCreateUpdateChannels": true
},
"messagingSettings": {
"allowUserEditMessages": true,
"allowUserDeleteMessages": true
},
"funSettings": {
"allowGiphy": true,
"giphyContentRating": "strict"
}
}
我总是遇到同样的错误
{
"error": {
"code": "BadGateway",
"message": "Failed to execute backend request.",
"innerError": {
"request-id": "45eeba8a-9d35-45e8-b42e-c60da7a47dde",
"date": "2020-01-23T21:55:44"
}
}
}