【问题标题】:How to send media files using firebase cloud messaging如何使用 Firebase 云消息发送媒体文件
【发布时间】:2017-05-09 09:11:32
【问题描述】:

我正在开发一个简单的 android 聊天应用程序,我发现使用它的 firebase 云消息传递我可以发送简单的文本消息,但我想发送图像、音频和视频等媒体文件。我可以使用 Firebase 云消息发送媒体文件吗?还有其他免费的消息服务器吗?

【问题讨论】:

  • 一般来说,您不会通过推送通知发送(重要的)媒体文件。

标签: android firebase firebase-cloud-messaging


【解决方案1】:

Firebase Cloud Messaging 将每条消息的数据量限制为 4K,这意味着您无法直接发送媒体。您可以在消息中包含一个 URL,您的应用可以使用该 URL 下载媒体。

【讨论】:

  • 对于图像、音频、视频文件,我必须将其存储在 firebase 存储中,我需要在 json 有效负载中发送此 url
  • @skyshine 您可以将文件存储在网络的任何位置。您可以将 url 包含在 JSON“数据”字典中。例如 - {...,"data":{"url":"http://..."},...}
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2023-03-11
  • 1970-01-01
  • 2021-07-06
  • 1970-01-01
  • 2017-01-19
  • 1970-01-01
  • 2020-08-07
相关资源
最近更新 更多