Receive data from Push notifications on tvOS

85 Views Asked by At

I tried to get some data from a push notification on tvOS.

Sent a message via Firebase and received it using this function:

extension AppDelegate: UNUserNotificationCenterDelegate {
    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
        let content = notification.request.content
    
        // API_UNAVAILABLE(tvos)
        // let userInfo = content.userInfo
        // let title = content.title
        // let subtitle = content.subtitle
    
        completionHandler([[.alert, .sound]])
    }
}

Using userInfo, title, or subtitle as on iOS is not possible.

If we look at the UNNotificationContent interface, we see that there are many restrictions on access to content parameters (API_UNAVAILABLE(tvos)). enter image description here

I printed the UNNotificationContent object in the Xcode console. And I found that the title and message text are on this object. enter image description here

Is it possible to pass some useful information to Push message and parse it?

0

There are 0 best solutions below