Наконец-то я могу отправлять push-уведомления через Firebase между моими двумя приложениями. Проблема в том, что в App1 работает только когда свежее установлено на устройстве. Если я останавливаюсь и запускаю снова, push-уведомления проекта больше не доставляются, даже если fcmToken
не изменилось, и в App2 я получаю ошибку:
POST:
{"multicast_id":6763498783850594663,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"NotRegistered"}]}
означает, что Firebase не нашла действительный fcmToken
для отправки push-уведомления. В то время как в App1 сначала установите консоль печати:
didReceiveRegistrationToken: токен регистрации Firebase:
eI8nx-zroBU: APA91bG9gZeukgfsxobw4C3mg0Jhro06ALUQqtJwjfYxIwv4hIvjFwNWpSc_0JHPtl2FAGb-Jqwk7GL5pgki_Q_awOngA8yP66IG9fpWKQjEuS330N_c3yMAQvDUBCVo7wbFET_oEqLu
правильно иметь, поскольку я настроил его в методе делегата didReceiveRegistrationToken
, при втором запуске didReceiveRegistrationToken
выдает тот же токен, что и раньше. Как я понял, если доставлен новый fcmToken
- это didRefreshRegistrationToken
, который вызывается, но у меня нет распечаток из этого метода делегата, так что кажется, что ранее fcmToken все еще действителен.
Вы видите, где я настроил это неправильно?
didFinishLaunchingWithOptions
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
window?.tintColor = UIColor.blue
// Use Firebase library to configure APIs
FirebaseApp.configure()
Messaging.messaging().delegate = self
Crashlytics().debugMode = true
Fabric.with([Crashlytics.self])
// setting up notification delegate
if #available(iOS 10.0, *) {
//iOS 10.0 and greater
UNUserNotificationCenter.current().delegate = self
let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
//Solicit permission from the user to receive notifications
UNUserNotificationCenter.current().requestAuthorization(options: authOptions, completionHandler: { granted, error in
DispatchQueue.main.async {
if granted {
print("didFinishLaunchingWithOptions iOS 10: Successfully registered for APNs")
UIApplication.shared.registerForRemoteNotifications() // declaring it work perfetcly
UIApplication.shared.applicationIconBadgeNumber = 0
} else {
//Do stuff if unsuccessful...
print("didFinishLaunchingWithOptions iOO 10: Error in registering for APNs: \(String(describing: error))")
}
}
})
} else {
//iOS 9
let type: UIUserNotificationType = [UIUserNotificationType.badge, UIUserNotificationType.alert, UIUserNotificationType.sound]
let setting = UIUserNotificationSettings(types: type, categories: nil)
UIApplication.shared.registerUserNotificationSettings(setting)
UIApplication.shared.registerForRemoteNotifications() // declaring it work perfetcly
UIApplication.shared.applicationIconBadgeNumber = 0
print("didFinishLaunchingWithOptions iOS 9: Successfully registered for APNs")
}
//get application instance ID
// InstanceID.instanceID().instanceID { (result, error) in
// if let error = error {
// print("didFinishLaunchingWithOptions: Error fetching remote instance ID: \(error)")
// } else if let result = result {
// print("didFinishLaunchingWithOptions: Remote instance ID token: \(result.token)")
// }
// }
// setting up remote control values
let _ = RCValues.sharedInstance
GIDSignIn.sharedInstance().clientID = FirebaseApp.app()?.options.clientID
Crashlytics().debugMode = true
Fabric.with([Crashlytics.self])
// // TODO: Move this to where you establish a user session
// self.logUser()
var error: NSError?
do {
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
} catch let error1 as NSError{
error = error1
print("could not set session. err:\(error!.localizedDescription)")
}
do {
try AVAudioSession.sharedInstance().setActive(true)
} catch let error1 as NSError{
error = error1
print("could not active session. err:\(error!.localizedDescription)")
}
// goggle only
GIDSignIn.sharedInstance().clientID = FirebaseApp.app()?.options.clientID
// GIDSignIn.sharedInstance().delegate = self
// Facebook SDK
return FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions)
// return true
}
didRegisterForRemoteNotificationsWithDeviceToken
:
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
let tokenParts = deviceToken.map { data -> String in
return String(format: "%02.2hhx", data)
}
let token = tokenParts.joined()
print(" didRegisterForRemoteNotificationsWithDeviceToken : devcice token is: \(token)")
Messaging.messaging().apnsToken = deviceToken
}
didReceiveRegistrationToken
func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String) {
print("didReceiveRegistrationToken: Firebase registration token: \(fcmToken)")
let dataDict:[String: String] = ["token": fcmToken]
NotificationCenter.default.post(name: Notification.Name("FCMToken"), object: nil, userInfo: dataDict)
// TODO: If necessary send token to application server.
AppDelegate.fcmToken = fcmToken
if userDetails.fullName != nil {
userDetails.fcmToken = fcmToken
Firebase.updateToken(completed: { (true) in
print("AppDelegate.didFinishLaunchingWithOptions: token updloaded to Firebase, will now save it to CoreData")
}, token: fcmToken)
}
// Note: This callback is fired at each app startup and whenever a new token is generated.
}
didRefreshRegistrationToken
func messaging(_ messaging: Messaging, didRefreshRegistrationToken fcmToken: String) {
let dataDict:[String: String] = ["token": fcmToken]
NotificationCenter.default.post(name: Notification.Name("FCMToken"), object: nil, userInfo: dataDict)
// print("Refreshed Token: \(fcmToken)")
AppDelegate.fcmToken = fcmToken
if userDetails.fullName != nil {
userDetails.fcmToken = fcmToken
Firebase.updateToken(completed: { (true) in
print("AppDelegate.didRefreshRegistrationToken: token updloaded to Firebase, will now save it to CoreData")
}, token: fcmToken)
}
}