我正在关注这篇文章管理私人频道的生命周期,以使用 App-Only 身份验证获取私人频道的网站 url。对于文章中提到的两个请求,它在一个租户中给出了预期的结果,GET https://graph.microsoft.com/beta/teams/<group_id>/channels?$filter=membershipType eq 'private'
GET https://graph.microsoft.com/beta/teams/<group_id>/channels?$filter=membershipType eq 'private'
但在另一个租户中,它为第二个请求抛出错误“502 Bad Gateway”,GET https://graph.microsoft.com/beta/teams/<group_id>/channels/<channel_id>/filesFolder
但第一个请求成功。谁能建议可能是什么问题?请注意,在两个租户应用程序中都具有相同的权限。
错误:
{
"error": {
"code": "BadGateway",
"message": "Failed to execute backend request.",
"innerError": {
"request-id": "6ab8032b-8d33-4543-b2f1-0e13978e9699",
"date": "2020-02-05T07:00:11"
}
}
}