Firebase显示没有图像的通知(空白)

时间:2019-05-16 00:40:08

标签: reactjs firebase react-native firebase-cloud-messaging

通过在React Native中通过firebase创建的通知,我在我的android应用中拥有了此代码。

我想显示带有图像的通知,但我得到标题,文本和空白(无图像)。

const getImageNotificationUrl = this.state.notificationImage; alert("esto es imagen que enviare: " + getImageNotificationUrl); const notification = new firebase.notifications.Notification().setNotificationId('notificationId: ' + data.id).setTitle(data.title).setBody(data.body); notification.android.setChannelId('samsungpluschannel').android.setSmallIcon('ic_notif').android.setBigPicture(getImageNotificationUrl).android.setAutoCancel(true).android.setDefaults(firebase.notifications.Android.Defaults.All); firebase.notifications().displayNotification(notification);

在我的package.json中,我有

"react-native-firebase": "4.3.0"

- 带有img的屏幕截图...

this is a link with my screenshot of my expanded notification

this is a link with url alert image

0 个答案:

没有答案