1

嗨,我正在尝试使用 Graph api(最近更新)获取 Microsoft 团队的频道,如下所示

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://graph.microsoft.com/beta/groups/f389913f-b38d-4784-a37c-9ae3259275dc/channels",
  "method": "GET",
  "headers": {
    "authorization": "token`enter code here`",
    "cache-control": "no-cache",
    "postman-token": "f4e5037c-913a-bc76-10a2-a0adb9064c11"
  }
}

$.ajax(settings).done(function (response) {
  console.log(response);
});

但我收到以下错误。

{
  "error": {
    "code": "AccessDenied",
    "message": "Failed to execute Skype backend request GetThreadRequest. Request Url: https://apac-client-ss.msg.skype.com/v1/threads/19:88b4b1fa52214b7fbb3fd8d10bd37cea@thread.skype?view=msnp24Equivalent, Request Method: GET,. The server failed to respond correctly. Response Code: Forbidden, Reason: SkypeToken is from a disallowed region.. Response Headers: Pragma: no-cache\r\nContextId: tcid=7407026678545725096,server=EAP010230200016\r\nCache-Control: no-store, must-revalidate, no-cache\r\nDate: Fri, 12 May 2017 12:29:34 GMT\r\nServer: Microsoft-HTTPAPI/2.0\r\n",
    "innerError": {
      "request-id": "46e772e4-9611-4f78-82ec-a43289ce5d17",
      "date": "2017-05-12T12:29:34"
    }
  }
}

这有什么问题吗。参考:https ://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/group_list_channels 我也给予了许可(Group.ReadWrite.All)。

4

3 回答 3

4

这是由于此新 API 的分阶段部署,尚未推广到您所在的地区。如果您重试,它现在应该可用。造成的不便,深表歉意。

请注意,您可以使用Microsoft Graph Explorer来使用这些 API,并帮助确定您的代码是否存在问题或 API 本身是否存在问题。您可以将它与示例帐户一起使用,或者 - 更好的是 - 使用您正在使用/测试的特定帐户登录。

于 2017-05-13T00:14:17.677 回答
0

在过去的几周里,我一直看到这种情况断断续续地发生。似乎没有任何押韵或理由来解释它为什么会弹出。有时请求有效,有时会因为“无法执行 Skype 后端请求 GetThreadS2SRequest”而失败。错误。

如果失败,我可以重试一次或两次请求并最终得到结果。

我怀疑是导致此问题的 Teams 后端存在某种错误或不稳定性。

于 2019-08-01T18:17:12.330 回答
0

您需要委托权限才能获取组的频道。目前应用权限不支持获取通道 api 调用。

于 2018-04-16T12:43:16.623 回答