嗨,我正在尝试使用Microsoft.Graph程序包向Azure广告用户添加扩展程序属性。
var schema = new SchemaExtension()
{
Id = "Location",
TargetTypes = new List<string> { "User" },
Description = "DescribesLocation",
Properties = new List<ExtensionSchemaProperty>() { new ExtensionSchemaProperty { Name = "LocationCode", Type = "String" } }
};
var result = graphClient.SchemaExtensions.Request().AddAsync(schema).Result;
我已经在azure广告注册的应用程序中创建了一个守护程序应用程序,并在下面授予了该应用程序的权限
我收到以下错误消息,代码为:Authorization_RequestDenied 消息:特权不足,无法完成操作。此操作还需要其他哪些权限,而又不需要哪些权限?