如何使用https://microsoft.graph.com和GraphServiceClient获取代理地址

时间:2017-03-27 17:33:03

标签: microsoft-graph azure-ad-graph-api

我正在尝试获取代理地址,但即使存在代理地址,代理地址属性也会返回null。

.form-group.col-xs-4:nth-child(3n+1) {
   clear:left;
}

我使用https://windows.net和ActiveDirectoryCLient获取代理地址。

1 个答案:

答案 0 :(得分:1)

您需要专门请求proxyAddresses

例如:

var users = await graphClient.Users.Request().Select("id, mail, proxyAddresses").GetAsync();