我作为租户管理员登录了我的开发租户,并且我尝试创建架构扩展,但我得到了403 Authorization_RequestDenied
。
我已将Directory.AccessAsUser.All
授予Graph Explorer并同意为admin,并进行了双重检查。
我正在使用以下有效负载对https://graph.microsoft.com/v1.0/schemaExtensions
运行POST:
{
"id":"GroupMetadata",
"description": "some desc",
"targetTypes": [
"Group"
],
"properties": [
{
"name": "groupType",
"type": "String"
}
]
}
我收到了回复:
{
"error": {
"code": "Authorization_RequestDenied",
"message": "Insufficient privileges to complete the operation.",
"innerError": {
"request-id": "3e3019c6-8ec5-4695-8ea3-b0aaf1ea1d25",
"date": "2017-09-06T13:14:36"
}
}
}
对此事的任何帮助都将不胜感激。
答案 0 :(得分:1)
我们只是为此部署了修复程序。您现在可以在Graph Explorer中创建/更新/删除模式定义。
注意:为了完成这项工作,您必须将owner
属性指定为您(已登录用户)的应用的appId )拥有,在所有POST,PATCH或DELETE操作中。
文档将很快更新,以反映此更改。如果您现在可以通过Graph Explorer完全管理扩展模式定义,请告诉我们。
希望这有帮助,