Appcelerator iOS Rich Push Notification在通过FCM发送时不显示图像

时间:2018-05-08 12:12:24

标签: ios firebase apple-push-notifications firebase-cloud-messaging appcelerator

我正在尝试在我的iOS应用中发送丰富的通知。我正在使用FCM发送通知。下面是here提到的有效载荷。我正在使用FCM模块(https://github.com/hansemannn/titanium-firebase-cloud-messaging)。我指的是this示例项目,并在我的Titanium项目中成功添加了UNNotificationServiceExtension。 但问题是,我只收到正常的通知,图片在通知面板中不可见。

{
    "to": "e4DgI95lsPA:APA91bHFX9MUmJ....",
    "content_available": true,
    "mutable_content": true,
    "click_action": "DOWNLOAD_CONTENT",
    "data": {
        "message": "Offer!",
        "attachment-url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/FloorGoban.JPG/1024px-FloorGoban.JPG"
    },
    "notification": {
        "body": "Enter your message",
        "sound": "default"
    }
}

1 个答案:

答案 0 :(得分:1)

检查链接的github示例的自述文件: Rich Notifications are part of the Titanium SDK 7.2.0 release

目前的SDK版本是7.1.1.GA.因此,只有在使用每晚构建或自定义SDK

时才会起作用