react-native-firebase v4.0 をインストールしたばかりで、Google コンソールから送信した通知を誰かが開いたことを検出しようとしています。
しかし、ドキュメントの例をコードに入れると、
解析エラー: 予期しないトークン、予想: (致命的)
「アクション」で
ここで何が欠けていますか?以前はこの種の構文を使用したことがありませんでした。
componentDidMount() {
this.notificationOpenedListener = firebase.notifications().onNotificationOpened(notificationOpen: NotificationOpen => {
// Get the action triggered by the notification being opened
const action = notificationOpen.action;
// Get information about the notification that was opened
const notification: Notification = notificationOpen.notification;
});
}