从应用商店下载时,Firebase云消息不起作用



当我将应用程序从xcode直接安装到带有实时URL的iPhone时,我的firebase云消息就可以工作了。但当我在Appstore上上传相同的代码,然后从那里下载时,它就不起作用了。上面写着"无效注册"。任何帮助都是非常可观的。感谢

func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) 
{
FIRInstanceID.instanceID().setAPNSToken(deviceToken, type: FIRInstanceIDAPNSTokenType.Sandbox)
FIRInstanceID.instanceID().setAPNSToken(deviceToken, type: FIRInstanceIDAPNSTokenType.Prod)
}

FIRInstanceIDAPNSTokenType.Sandbox当我们从TestFlight下载时或当我们在开发模式下测试时使用,以及FIRInstanceIDApnSToketType.Prod当我们发布生产版本或从AppStore 下载时使用

相关内容

  • 没有找到相关文章

最新更新