问题描述
我真的是新手,需要建议.
I am really rookie and need an advice.
我已阅读文档,据我所知,如果您需要发送直接消息,请关注下一步:
I have read documentation, and as far as i understood if you need send direct message, follow next steps:
- 进行身份验证,最终获得
Firebase TokenId
和userId
- 将它们发送到您的服务器端并将其存储在数据库中
- 当您要发送消息时,您需要创建
json
并放入topic
text
和resipent userId
等等... - 通过 HTTP 将此
json
发送到您的服务器端 - 当服务器检索到这个
json
时,它应该使用 Firebase API 来在 firebase 中创建具有随机名称的新消息块child
- 最终服务器必须通过我们从消息中获得的 userId 在 DB 中找到 recipent 用户.
- 服务器会通过 userId 找到当前的 recipent 用户,接下来我们应该使用
firebase tokenId
来发送通知. - 并使用此类数据发送配方用户通知 - 新名称消息块
child
- 收件人将连接到此当前区块并检索数据
- Make authentification, eventually you get
Firebase TokenId
anduserId
- Send them to your server side and store it in DB
- When you are going to send a message you need create
json
and put insidetopic
text
andresipent userId
so on... - Send this
json
via HTTP to your server side - When server retrive this
json
, it should use Firebase API to create new message blocchild
with random name in firebase - Eventually server have to find recipent user in DB by userId that we get from message.
- After server will find current recipent user by userId , next we should take
firebase tokenId
In order to sent notification . - And send recipent user notification with such data - name of new
message bloc
child
- Recipent will connect to this current bloc and retrive data
这是我理解的这个概念,如果有错误请纠正我?
It is as i understood this consept, fix me please if smth wrong?
推荐答案
您建议的方法听起来不错.要实现的最重要的事情是您需要应用服务器将下游消息发送到设备.使用数据库作为应用程序和应用程序服务器之间的通信机制是一种流行的方法.
Your suggested approach sounds good. The most important thing to realize is that you require an app server to send a downstream message to a device. Using the database as the communication mechanism between the app and the app server is a popular approach.
您还可以使用 云消息传递的上游功能.但我从未尝试过这种方法,因为数据库对我来说很好用,而且我对学习另一种协议 (XMPP) 没什么兴趣.
You could also use Cloud Messaging's upstream capabilities. But I've never tried that approach, because the database works fine for me and I had little interest in learning yet another protocol (XMPP).
您可以在这篇 Firebase 博客文章中了解我是如何实现它的 在具有 Firebase 数据库和云消息传递的 Android 设备之间发送通知.
You can read how I implemented it in this Firebase blog post Sending notifications between Android devices with Firebase Database and Cloud Messaging.
这篇关于如何通过 Firebase 从用户向用户发送直接消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!