在React Native中推送通知

时间:2019-08-26 11:58:20

标签: android ios firebase react-native push-notification

我正在借助“ react-native-push-notification”库将推送通知集成到react native中。推送来自节点js(后端)。 我在环境Android和IOS上都得到了成功的推动。

现在我有两个问题 1)在ios中,当我得到推送时,通知有效负载“ userInteraction”中有一个参数。此参数适用于该用户是否单击了通知。现在,它在android中工作正常,但在ios中,这始终是错误的。 2)我想在来自推送的推送通知中设置自定义图片。

我正在使用“ https://www.npmjs.com/package/react-native-push-notification”这个库。

我已经尝试过此代码:-

  export function setupPushNotification(handleNotification) {
    PushNotification.configure({

    onRegister: function (token) {

        if (Platform.OS == 'ios') {
            firebase.messaging().getToken().then((token) => {
                alert(JSON.stringify(token))
                requestaddAuthToke(token)
            .then((data) => {
                console.log("hello2 " + JSON.stringify(data))
            })
            .catch((error) => {
                console.log("hello3 " + JSON.stringify(error.message));
            })
            });
        }
        else {
            console.log("hello2 " + JSON.stringify(token.token))
            requestaddAuthToke(token.token)
            .then((data) => {
                console.log("hello2 " + JSON.stringify(data))
            })
            .catch((error) => {
                console.log("hello3 " + JSON.stringify(error.message));
            })
        }
    },

    onNotification: function (notification) {
        const clicked = notification.userInteraction;
        if (clicked)
            handleNotification(notification.episodeCode)

        if (Platform.OS == 'ios')
            notification.finish(PushNotificationIOS.FetchResult.NoData);

    },

    senderID: "529815244511",
    permissions: {
        alert: true,
        badge: true,
        sound: true
    },



    popInitialNotification: true,
    requestPermissions: true,


 })

  return PushNotification
}

任何类型的帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您正在同时使用react-native-push-notification和react-native-one-signal。唯一的问题是,仅在iOS中点击本地通知时,才会调用onNotification。

解决方案:

  

https://github.com/zo0r/react-native-push-notification/issues/919#issuecomment-439373380