4

请解释我如何在那里获取呼叫 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');
            }
        }
4

2 回答 2

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
于 2016-05-04T12:02:36.847 回答
0

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

于 2016-04-20T01:27:10.613 回答