Я использую реактивный с aws-ampify. Я не могу получить данные push-уведомлений, когда приложение закрыто или когда приложение не запущено. Я получаю данные push-уведомлений, когда приложение находится вфон или передний план.
componentDidMount() {
PushNotification.onNotification((notification) => {
console.log('in app notification', notification);
notification.finish(PushNotificationIOS.FetchResult.NoData);
});
// get the registration token
PushNotification.onRegister((token) => {
console.log('in app registration', token);
});
// get the notification data when notification is opened
PushNotification.onNotificationOpened((notification) => {
console.log('the notification is opened', notification);
});
}