-1

I have a free iOS app available on iOS App-store. Sales and Trends section of ITunesConnect gives the information about number of downloads, country from where app is downloaded etc.

But how can I get the contact information of people who downloaded the app?

4

2 回答 2

3

这在Apple 隐私政策iOS 开发者许可协议Mac 开发者许可协议以及Apple 审查指南中都有说明

17 - 隐私

17.1 - 未经用户事先许可,应用程序不得传输有关用户的数据,并为用户提供有关如何以及在何处使用数据的信息的访问权限

**17.2 要求用户分享个人信息(例如电子邮件地址和出生日期)才能正常运行的应用程序将被拒绝** -- 主要是为您准备的这个

17.3 - 应用程序可能仅出于遵守适用的儿童隐私法规的目的而要求提供出生日期(或使用其他年龄限制机制),但无论用户年龄如何,都必须包含一些有用的功能或娱乐价值

请注意,根据Apple Review Guidelines的17.2,要求用户分享个人日期的应用程序将被拒绝,这包括出生日期、电子邮件、联系方式等。

在第17.1节中,您从用户那里获取的一项数据必须得到用户的同意,以及您问这个问题的原因,听起来您希望自动发送用户不知道的数据。不,这是做不到的。

笔记

最后我要在这里指出你https://meta.stackexchange.com/questions/182266/how-much-research-effort-is-expected-of-stack-overflow-users/182380#182380。这是因为我已经看到你自己提出的多个问题,事先对这个问题缺乏任何研究,我试图告诉你在评论中的确切位置,但你仍然没有这样做。我知道您可以访问Apple 审核指南,因为您已在上一个问题中添加了指南。

请在提问前进行研究

于 2013-10-24T13:24:06.863 回答
1

You can't unless they choose to enter that information in the app itself. That would be a violation of Apple's privacy policy.

One way to do this on the app side would be implement Facebook login and get their Facebook information which includes most of their basic contact information. (You should tell your users you are doing so.)

于 2013-10-01T06:35:48.970 回答