Register Push Token

In order to receive push notifications, registering your token is necessary. You can use this API to register this token.

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    Replies.didRegisterForRemoteNotifications(withDeviceToken: deviceToken)
}

Last updated