我正在尝试从 Microsoft 图形用户中获取创建用户的日期 (createdDateTime)。
在 Microsoft Graph Explorer 中,您可以找到该属性并且它有一个值。但是当我尝试在我的 c# 代码中填写我的属性时,microsoft.graph.user 没有createdDateTime任何类型的属性,所以它属于其他东西还是尚未实现?
List<QueryOption> options = new List<QueryOption>
{
new QueryOption("$select", "id,userPrincipalName,createdDateTime")
};
var graphserviceClient = new GraphServiceClient(new DelegateAuthenticationProvider((requestMessage) => { requestMessage.Headers.Authorization = new AuthenticationHeaderValue("bearer", BearerToken.access_token); return Task.FromResult(0); }));
var AllUsers = await graphserviceClient.Users.Request(options).GetAsync();
foreach ( Microsoft.Graph.User FoundUser in AllUsers)
{
DateTimeOffset? cD = FoundUser.???//createdDateTime
}
在图中 https://graph.microsoft.com/v1.0/me/ ?$select=displayName,createdDateTime
结果
"displayName": "-K*** D****",
"createdDateTime": "2016-10-26T20:30:04Z"
预期:我只是想知道从哪里获取存储在图形中的这个属性的值
心有法竹
相关分类