Как получить push-уведомление firebase в IOS? - PullRequest
0 голосов
/ 26 сентября 2018

Есть ли способ получения полезных данных push-уведомлений в IOS?В Android это работает так:

firebase.messaging().onMessage((message: RemoteMessage) => {
   // Process your message as required
});

, но в ios это не работает.Он пытался:

firebase.notifications().displayNotification((notification) => {
    console.log(notification);
});

или

firebase.notifications().onNotification((notification) => {
    console.log(notification);
});

все еще ничего не работает.Спасибо

1 Ответ

0 голосов
/ 26 сентября 2018

Неважно, я разобрался, назвав это так:

firebase.notifications().onNotificationDisplayed((notification: Notification) => {
    console.log(notification);
});

firebase.notifications().onNotification((notification: Notification) => {
    console.log(notification);
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...