前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >UWP 上架失败因为没有添加隐私策略

UWP 上架失败因为没有添加隐私策略

作者头像
林德熙
发布2022-08-12 16:45:25
2360
发布2022-08-12 16:45:25
举报
文章被收录于专栏:林德熙的博客

在使用 UWP 上架之前需要经过微软的审核,在美国很看重个人隐私,因此需要在两个地方都填写上隐私策略。第一个是应用商店里面,第二个是应用程序里面

如果是个人开发者,我的推荐是在 github 或 gitee 创建一个叫隐私策略的文件,复制这个链接填写在应用商店管理的属性上,请看下图

如何写隐私策略请看 win10 uwp 隐私声明 注意修改软件名

然后打开代码,在代码里面添加一个叫 PrivacyPolicyURL 的静态属性,将隐私策略放在这个属性,然后写一个文本超链接用于打开

代码语言:javascript
复制
public static class PrivacyPolicy
{
	public static string PrivacyPolicyURL { get; } = "https://github.com/lindexi/UWP/blob/master/uwp/src/%E9%9A%90%E7%A7%81%E7%AD%96%E7%95%A5/Privacy%20Policy.md";
}

在界面添加超链接

代码语言:javascript
复制
                <TextBlock>
                    <Hyperlink NavigateUri="https://github.com/lindexi/UWP/blob/master/uwp/src/%E9%9A%90%E7%A7%81%E7%AD%96%E7%95%A5/Privacy%20Policy.md">隐私策略</Hyperlink>
                </TextBlock>

修改之后请重新上传新的包

如果此时发现无法上传新的包,而在认证里面有附加了联系的邮件地址,如文章最后附加的微软给我的信息,可以看到微软告诉我说联系 reportapp@microsoft.com 邮件

可以通过谷歌翻译的方式告诉微软的大佬说我的应用已经更新了,里面填写了隐私声明了。小窍门,即使咱之前已经写过了,也是要给他一点面子,还是说咱改了软件了,感谢你的提示。另外在发邮件的时候记得附加自己应用的 Id 哦,如可以这样写

代码语言:javascript
复制
主题: I update my application 9NBLGGH562R2 and please review it

正文:

Hi,
 
My applicaion(App Id: 9NHNXT3Q2X7F) was publish fail and I have changed my app now, and please review it.

Thank you.

请将 App id 替换为你的应用 Id 如何找到自己的应用 Id 请看下面

可以找到应用号

下面是微软发给我的信息

代码语言:javascript
复制
Please take the following action

We reviewed your submission and identified some changes that are needed before we can publish or update the app. Please make these changes and resubmit your app. For more information, contact reportapp@microsoft.com Please include your app ID so we can act quickly.

App Policies: 10.5.1 Personal Information

Notes To Developer

Because the app accesses personal information, a working link to a privacy policy must be provided.
Location where privacy policy was missing: 
Metadata: OK 
In-product: Needs attention
 
For metadata include the privacy policy URL during app submission under the Properties section in the “Privacy Policy URL” field.
 
For in-product include the privacy policy URL under the settings section.
 
For additional assistance with updating the privacy policy URL, please contact Developer Support via Dev Center or here: http://aka.ms/storesupport
 
Personal information the app accesses includes:
Photos (Picture gallery)
Documents (device folders and files)
Please Note

    Your current certification results might differ from earlier submissions because Microsoft Store policy requirements can change over time. When policies change, we might re-test according to the new requirements regardless of the submission type. Please always rely on your most recent certification results.

为什么我的图床应用需要写隐私策略,因为我访问了 Photos 文件夹和 Documents 文件夹

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档