如何在FireBase中向特定人员发送消息

Kei*_*ter 1 security chat firebase

我正在学习如何使用Firebase,我对如何向Firebase中的特定人员发送聊天消息感到困惑.基本上我想要做的是在2个人之间进行双向聊天,但其他人也可以与其他朋友进行其他聊天.每次聊天都需要新的Firebase吗?

Thị*_*hạm 6

如果A想要与B聊天,A发送消息(推送)到

http://your-fire-base.firebaseio.com/b_id/ (B's channel) 
Run Code Online (Sandbox Code Playgroud)

内容

{sender: a_id, data: some_data}
Run Code Online (Sandbox Code Playgroud)

B将订阅他自己的频道并根据发件人过滤数据.