当前位置: 首页 > 知识库问答 >
问题:

获取敏感度标签错误-未配置符合性策略:缺少< policy >标记

张博涛
2023-03-14

在Azure aip中,我创建了一个应用程序,并获得了所有必需的权限和管理员同意,如MIP sdk先决条件部分中所述。

这是根据 sdk 创建文件引擎的代码。

public static IFileEngine CreateFileEngine(Identity identity)
{
            // If the profile hasn't been created, do that first. 
            if (profile == null)
            {
                profile = CreateFileProfile(appInfo, ref authDelegate);
            }

            // Create file settings object. Passing in empty string for the first parameter, engine ID, will cause the SDK to generate a GUID.
            // Locale settings are supported and should be provided based on the machine locale, particular for client applications.
            var engineSettings = new FileEngineSettings("", "", "en-US")
            {
                // Provide the identity for service discovery.
                Identity = identity
            };

            // Add the IFileEngine to the profile and return.
            var engine = Task.Run(async () => await profile.AddEngineAsync(engineSettings)).Result;

            return engine;
} 

这里我得到一个异常,说“没有配置遵从性策略”(见图片)。

我已签入租户 AIP 统一标签,并且保护已激活,并且与 Office 365 保护中心的敏感度标签同步。(就像这个答案中推荐的那样)。

我是租户的全局管理员,令牌是使用我的凭据生成的。

public string AcquireToken(Identity identity, string authority, string resource, string claims)
{
            AuthenticationContext authContext = new AuthenticationContext(authority);
            string clientSecret = ConfigurationManager.AppSettings["ida:ClientSecret"]?.ToString();
            //var clientCred = new ClientCredential(AppInfo.ApplicationId, clientSecret);
            var result = Task.Run(async () => await authContext.AcquireTokenAsync(resource, AppInfo.ApplicationId, new Uri(redirectUri), new PlatformParameters(PromptBehavior.Always))).Result;
            //var result = authContext.AcquireTokenAsync(resource, clientCred).Result;
            return result.AccessToken;
 }

我还在 aip 中发布了 4/5 的敏感度标签。

我错过了什么?

共有1个答案

濮嘉茂
2023-03-14

您可以在Office 365 Security and Compliance Centre中向您的用户/组发布策略,或者将您的AIP策略复制到

 类似资料:
  • 正在获取此行中的以下错误: 错误: 否策略异常:未配置合规性策略:缺少标记

  • 问题内容: 我希望我的JTextPane每次按Tab时都插入空格。当前,它会插入制表符(ASCII 9)。 无论如何,有没有自定义JTextPane的选项卡策略(除了捕获“ tab-key”事件并自己插入空格外)? 问题答案: 您可以在JTextPane上设置javax.swing.text.Document。以下示例将使您了解我的意思:) 定义一个DefaultStyleDocument来完成这

  • 我在运行节点应用程序时遇到配置错误。错误是: 我的代码是: 我在这里尝试了解决方案: AWSCognito配置错误中缺少区域 这没有帮助。

  • 我试着把我的应用上传到iTunes Connect Resp。AppStore并得到以下错误: 未能找到或生成匹配的签名资产 Xcode试图定位或生成匹配的签名资产,但由于以下问题而失败。 在设置新的开发机器之前,通过Xcode7将开发人员帐户从旧机器导出到新机器。 我该怎么做才能解决这个问题?

  • 我在后端中使用并且可以很好地使用但是当我尝试使用方法时,我得到一个作为响应。 文件中说: 默认情况下,未配置凭据和区域设置。这应该在使用任何AWS服务API之前由应用程序进行配置。 所以我设置了我的区域,但为什么我仍然得到一个错误?

  • 我错误地从Mac上删除了所有配置文件()。现在,无论我做什么,Xcode都给我这个错误: 缺少iOS分发签名标识 我该怎么解决这个?