Plivo - 如何在web sdk中获取call_uuid

时间:2016-03-08 10:25:13

标签: plivo

请解释我如何在那里打电话uuid。 当我连接一个电话。 https://www.plivo.com/docs/getting-started/web-sdk/make-outgoing-calls/

// Make outgoing calls
        function call() {
            if ($('#make_call').text() == "Call") {
                // The destination phone number to connect the call to
                var dest = $("#to").val();
                if (isNotEmpty(dest)) {
                    $('#status_txt').text('Calling..');
                    // Connect the call
                    Plivo.conn.call(dest);
                    $('#make_call').text('End');
                }
                else{
                    $('#status_txt').text('Invalid Destination');
                }
            }
            else if($('#make_call').text() == "End") {
                $('#status_txt').text('Ending..');
                // Hang up the call
                Plivo.conn.hangup();
                $('#make_call').text('Call');
                $('#status_txt').text('Ready');
            }
        }

2 个答案:

答案 0 :(得分:1)

WEB-SDK不会激活调用uuid

 set callback url in xml and get both call uuid (DialALegUUID,DialBLegUUID)

 https://www.plivo.com/docs/xml/dial/#callbackurl-request-parameters

答案 1 :(得分:0)

WEB-SDK不提供UUID,但它会调用端点应用程序中指定的Answer URL。从那里你可以将呼叫重定向到它应该的位置,并使用提供的UUID开始录制和播放语音消息等......