How to do implement notification in iOS with Firebase

Issue #64

Note: This applies to Firebase 4.0.4

Preparing push notification certificate

Go to Member Center -> Certificates -> Production

Certificate

You can now use 1 certificate for both sandbox and production environment
push

Auth Key

Configure push notification

  • Go to Firebase Console -> Settings -> Project Settings -> Cloud Messaging -> iOS app configuration
    • If you use certificate, use just 1 Apple Push Notification service SSL for both fields
    • If you use Authenticate Key, fill in APNS auth key

firebase

Adding pod

In your Podfile, declare

1
2
pod 'Firebase/Core'
pod 'Firebase/Messaging'

Disabling app delegate swizzling

1
2
<key>FirebaseAppDelegateProxyEnabled</key>
<false/>

Read more on Messaging.messaging().apnsToken

This property is used to set the APNS Token received by the application delegate.
FIRMessaging uses method swizzling to ensure the APNS token is set automatically. However, if you have disabled swizzling by setting FirebaseAppDelegateProxyEnabled to NO in your app’s Info.plist, you should manually set the APNS token in your application delegate’s -application:didRegisterForRemoteNotificationsWithDeviceToken: method.
If you would like to set the type of the APNS token, rather than relying on automatic detection, see: -setAPNSToken:type:.

Configuring Firebase

You can and should configure Firebase in code

1
2
3
4
5
6
7
8
import Firebase

let options = FirebaseOptions(googleAppID: "", gcmSenderID: "")
options.bundleID = ""
options.apiKey = ""
options.projectID = ""
options.clientID = ""
FirebaseApp.configure(options: options)

Handling device token

1
2
3
4
5
import Firebase

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
Messaging.messaging().apnsToken = deviceToken
}

Getting FCM token

Retrieving FCM token

Read Access the registration token

By default, the FCM SDK generates a registration token for the client app instance on initial startup of your app. Similar to the APNs device token, this token allows you to target notification messages to this particular instance of the app.

1
Messaging.messaging().fcmToken

Observing for FCM token change

Read Monitor token generation

1
2
3
4
5
6
7
Messaging.messaging().delegate = self

// MARK: - MessagingDelegate

func messaging(_ messaging: Messaging, didRefreshRegistrationToken fcmToken: String) {
print(fcmToken)
}

Comments