iPhone app rejection 17.2: app requires users sign in with their Facebook accounts

我是研究僧i 提交于 2019-12-06 11:18:18

What I did to solve this is I moved all the Facebook code from -applicationDidFinishLaunching to a custom method -createFBInstance that I called from a UIViewController whenever a UIButton was pressed so now the user only logs in to Facebook when a button is clicked and the app works great! Just make sure you only use the methods from the FBSessionDelegate inside your delegate I could never make it work in any other class. I also opened up the login web page in a web view inside the app so it looks much nicer.

Of course it will be rejected. 17.2 says Apps that require users to share personal information, such as email address and date of birth, in order to function will be rejected. There is no way for users to use your application until they have facebook account. Instead I suggest you keep it optional like login with facebook/Google and have your application's own registration procedure.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!