ConnectyCube / connectycube-reactnative-samples

Chat and Video Chat code samples for React Native, ConnectyCube
https://connectycube.com
Apache License 2.0
125 stars 111 forks source link

add participant in ongoing conference video call #164

Closed mikeangelsilva closed 3 years ago

mikeangelsilva commented 3 years ago

is it possible to add a participant in an ongoing video call session?

thanks

DaveLomber commented 3 years ago

Is it about p2p or conf calling?

mikeangelsilva commented 3 years ago

It is a conference calling.

Does it support?

Thank you On Tue, Dec 8, 2020 at 4:36 PM Dave Pol Lomber notifications@github.com wrote:

Is it about p2p or conf calling?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/ConnectyCube/connectycube-reactnative-samples/issues/164#issuecomment-740470972, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJIBLQFQOPP4SR7NFMWXNDDSTXQRFANCNFSM4URRJYVQ .

DaveLomber commented 3 years ago

Yes, you ca do it by sending a user a system message

e.g.

const msg = {event: "callInvite", roomId: "xxx"};

ConnectyCube.chat.sendSystemMessage(userId, msg);

so then this user receives the message and can join into room by roomId param

https://developers.connectycube.com/js/messaging?id=system-messages