我目前有一个可以成功与nodejs服务器通信的离子应用程序。该应用程序是使用node-gcm的通知系统。 gcm的问题在于您无法发送图像。如果这样做,则有效负载太大。如果要发送图像,则必须通过“tumblr.com / .....”等网址发送。我目前不想处理文件系统来托管图像的url。我想做的是: 1)app拍摄图像并将图像发布到节点服务器。 (base64或url或其他任何工作)。
2)然后服务器获取该图像并通过gcm
将其发送到另一台设备3)另一台设备接收gcm并看到图像。
唯一限制我的是gcm的有效载荷。那么如何在不使用文件系统的情况下创建我需要的链接呢?
答案 0 :(得分:0)
尝试下面的json,它对我有用
{"regid": "registratioId whom do you want to send",
"data": {
"title": "your title",
"message": "your message",
"image": "link of the icon you want to set", // this will be displayed as icon
"style": "picture",
"picture": "link of the picture/image you want to send",
"summaryText": "summary text"
}
}