1

我在使用 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"
    }
  }
}
4

1 回答 1

1

根据Graph API 文档,您没有调用正确的端点来创建新团队。它应该是

POST https://graph.microsoft.com/beta/teams

和类似的有效载荷

Content-Type: application/json
{
  "template@odata.bind": "https://graph.microsoft.com/beta/teamsTemplates('standard')",
  "displayName": "My Sample Team",
  "description": "My Sample Team’s Description",
  "owners@odata.bind": [
    "https://graph.microsoft.com/beta/users('userId')"
  ]
}

请注意,根据文档,无论您使用的是委托还是应用程序权限,它都略有不同。

于 2020-01-24T04:49:21.873 回答