query https://graph.microsoft.com/v1.0/users?$select=id&$expand=manager没有返回任何关于经理的信息!(使用测试版的结果相同)
有没有使用图形API获取管理器导航属性的解决方案?
发布于 2019-07-22 19:20:56
这似乎在beta端点上工作得很好。在Graph Explorer https://developer.microsoft.com/en-us/graph/graph-explorer中尝试以下示例
https://graph.microsoft.com/beta/users?$expand=manager但是其他一些查询并不像预期的那样工作,所以在使用select时要小心:
https://graph.microsoft.com/beta/users?$expand=manager($select=id,displayName)https://stackoverflow.com/questions/43328466
复制相似问题