android - QuickBlox - How to send data during video call? -
is there way send data opponent during live video call? have requirement send configuration data opponent based user's action on video call screen. or need open chat session between user's in background , send data on channel?
please advise.
thanks.
if want send data on step of call, can use userinfo field of callback, example, if want send data when accept call, use next code:
qbrtcsession qbrtcsession = ...; map<string, string> someadditionaldata = ...; qbrtcsession.acceptcall(someadditionaldata); and participants info in callback
oncallacceptbyuser(qbrtcsession session, integer userid, map<string, string> userinfo); if want send data in time during call, can use quickblox system notifications feature, more there.
Comments
Post a Comment