Mountain View
Jabber SDK API Documentation

Tutorial: Start Conversation

Start Conversation

Title Telephony Conversations can be started in two ways. It can be started with audio only or with both video and audio:

        // Number that will be used for starting a new audio conversation.
        var number = "1111";

        // This way we start audio conversation.
        cwic.TelephonyController.startAudioConversation(number);

        // This way we start video conversation.
        cwic.TelephonyController.startVideoConversation(number);
    
Once conversation has been initiated, "onConversationOutgoing" event will be fired.

Next

Previous