无法使setBackgroundMessageHandler工作

时间:2019-10-27 18:15:33

标签: android react-native react-native-firebase

react-native-firebase v6中,我无法让setBackgroundMessageHandler在我的应用中工作。可以很好地接收通知,但是不执行处理程序。

我已经像在guide中那样做,无济于事。

import { AppRegistry } from 'react-native';
import messaging from '@react-native-firebase/messaging';
import AsyncStorage from '@react-native-community/async-storage';
import App from './App';
import { name as appName } from './app.json';

AppRegistry.registerComponent(appName, () => App);

messaging().setBackgroundMessageHandler(async ({ data: { title, message } }) => {
    console.log('in background');
    // Save the notification locally
    const notificationList = JSON.parse(await AsyncStorage.getItem('@SM_NOTIFICATIONS')) || [];
    notificationList.push({ title, message, isRead: false });
    await AsyncStorage.setItem('@SM_NOTIFICATIONS', JSON.stringify(notificationList));
});

传入的通知旁边什么都没有发生。我希望代码将传入的通知保存在AsyncStorage中。

1 个答案:

答案 0 :(得分:0)

好的。在咨询了开发人员团队之后,我终于弄清楚了这一点。

首先,必须在setBackgroundMessageHandler之前调用registerComponent

第二,不发送通知数据。仅发送自定义数据(静默推送)。因此,您需要使用本地通知而非推送通知才能在系统任务栏中显示通知。

由于Firebase控制台不支持静默推送,因此我使用FCM API v1发送仅数据。这是我的示例:

POST https://fcm.googleapis.com/v1/projects/my-project/messages:send

{
    "validate_only": false,
    "message": {
        "name": "XXX",
        "data": {
            "title": "BG 2",
            "message": "BG BARU"
        },
        "topic": "C3166"
    }
}

如您所见,上面的JSON中没有notification字段。