应用程序由于苹果,Facebook等第三方登录而拒绝发布问题

时间:2020-05-18 03:37:33

标签: swift facebook google-signin

使用苹果,facebook或google登录时,由于以下问题,该应用在应用商店中被拒绝。

1)该应用程序显示未连接到互联网,而代码已到位,可以检查互联网,如下所示:

let status = Reach().connectionStatus()
                                     switch status {
                                     case .unknown, .offline:
                                         print("Not connected")
                                       self.navigationController?.view.makeToast("Please connect the internet", duration: 3.0, position: .bottom)
                                     case .online(.wwan):
                                         print("Connected via WWAN")
                                     case .online(.wiFi):
                                         print("Connected via WiFi")

                                     }

2)另外,google或facebook登录显示白屏。

enter image description here

0 个答案:

没有答案
相关问题