我使用 react-native-firebase 构建了一个简单的 react-native 应用程序。我成功地向我的设备发送了推送通知,然后我想实现如果用户触摸(单击)来自设备的通知,它将重定向到我附加的网页。
我安装了 fcm-node 来发送推送通知。代码如下
const FCM = require('fcm-node');
const message = {
notification: {
fcmTitle,
body
},
to: token
};
fcm.send(message, function (err, response) {
console.log('response',response);
console.log("error : "+err);
})
因此,如果用户单击推送通知,它应该打开网络浏览器并重定向到我从代码中附加的页面