【发布时间】:2018-08-23 18:35:49
【问题描述】:
我尝试了以下查询来添加schemaExtension,但它以Authorization_RequestDenied 响应失败。
网址:https://graph.microsoft.com/v1.0/schemaExtensions/
发布数据:
{
"id": "voctestextension",
"description": "voc test extension",
"targetTypes": ["User"],
"properties": [
{
"name": "trainings",
"type": "Integer"
},
{
"name": "incidents",
"type": "String"
}
]
}
回应
{
"error": {
"code": "Authorization_RequestDenied",
"message": "Insufficient privileges to complete the operation.",
"innerError": {
"request-id": "1d4d625d-99bc-46fc-9e7a-ac30d0840219",
"date": "2018-03-14T13:17:45"
}
}
}
我已授予以下权限:
【问题讨论】: