我们正在尝试访问处于测试版的团队的渠道API。
API - https://graph.microsoft.com/beta/teams/{team-id}/channels
,并且似乎不支持msgraph-sdk-java中的 beta API。 有人可以确定是否提供了此支持,或者msgraph-sdk-java是否仅支持 v1.0 API?
v1.0的示例工作API如下:
IGraphServiceClient
.groups()
.buildRequest()
.get()
.getCurrentPage()
...
// Handle failure case
});
答案 0 :(得分:2)
要访问beta终结点,可以更改GraphServiceClient对象指向的URL:
graphClient.setServiceRoot("https://graph.microsoft.com/beta/");
更多信息供您参考:https://github.com/microsoftgraph/msgraph-sdk-java/wiki/Custom-Requests
答案 1 :(得分:1)
更新:现在有一个beta SDK可用于查询Beta端点。