【发布时间】:2020-05-29 06:36:27
【问题描述】:
我正在开发一项功能,我需要为所有用户找到preferredDataLocation 字段,但事实证明它目前处于测试版。我们如何检查此功能进入稳定版本的预计日期?我尝试查看 Microsoft 365 路线图,但找不到。我尝试使用以下请求
https://graph.microsoft.com/v1.0/users/delta$select=id,preferredDataLocation
但它给出了以下错误
{
"error": {
"code": "Request_UnsupportedQuery",
"message": "Invalid property: preferredDataLocation",
"innerError": {
"request-id": "c93a43cb-fa9d-4803-801a-5864439ad66d",
"date": "2020-06-02T09:24:30"
}
}
}
如果我使用没有delta 的请求,那么它可以正常工作。例子
https://graph.microsoft.com/v1.0/users$select=id,preferredDataLocation
【问题讨论】:
-
只要微软不告诉我们,你就无法估计这个日期。
-
已经是V1.0版本了。请参考这个document
-
@SruthiJ-MSFTIdentity 当您使用 delta 时它不起作用。我也编辑了问题
标签: microsoft-graph-api office365 microsoft-graph-mail