I have made an online video call add-on for chat rooms

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I have made an online video call add-on for chat rooms


    TO ACCEPT A CALL <message to="..." type="headline" id="..."> <extraParams xmlns="jabber:client"> <moduleIdentifier>WebRTCVideoChat</moduleIdentifier> <signalType>accept</signalType> <sessionID>...</sessionID> <sdp>...</sdp> <platform>...</platform> <userInfo>...</userInfo> </extraParams> </message> TO REJECT A CALL
    <message to="..." type="headline" id="..."> <extraParams xmlns="jabber:client"> <moduleIdentifier>WebRTCVideoChat</moduleIdentifier> <signalType>reject</signalType> <sessionID>...</sessionID> <platform>...</platform> <userInfo>...<userInfo> </extraParams> </message> TO HANG UP
    <message to="..." type="headline" id="..."> <extraParams xmlns="jabber:client"> <moduleIdentifier>WebRTCVideoChat</moduleIdentifier> <signalType>hangUp</signalType> <sessionID>...</sessionID> <userInfo>...</userInfo> </extraParams> </message>
Working...
X