Send digits
This code sends the digits 1234 on the live call.
Response
<Response>
<DTMF> 1234</DTMF>
</Response>
Example Request
1
2
3
4
5
from plivo import plivoxml
response = plivoxml . ResponseElement ()
response . add ( plivoxml . DTMFElement ( '1234' ))
print ( response . to_string ())
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'plivo'
include Plivo :: XML
include Plivo :: Exceptions
begin
response = Response . new
dtmf = "12345"
response . addDTMF ( dtmf )
xml = PlivoXML . new ( response )
puts xml . to_xml
rescue PlivoXMLError => e
puts 'Exception: ' + e . message
end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var plivo = require ( ' plivo ' );
var response = plivo . Response ();
var dtmf = " 12345 " ;
response . addDTMF ( dtmf );
console . log ( response . toXML ());
/*
Sample Output
<Response>
<DTMF>12345</DTMF>
</Response>
*/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
require '../vendor/autoload.php' ;
use Plivo\XML\Response ;
$response = new Response ();
$dtmf = "12345" ;
$response -> addDTMF ( $dtmf );
Header ( 'Content-type: text/xml' );
echo ( $response -> toXML ());
/*
Sample Output
<Response>
<DTMF>12345</DTMF>
</Response>
*/
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Example for xml - send digits
package com.plivo.api.xml.samples.xml ;
import com.plivo.api.exceptions.PlivoXmlException ;
import com.plivo.api.xml.Dtmf ;
import com.plivo.api.xml.Response ;
import com.plivo.api.xml.Speak ;
class SendDigits {
public static void main ( String [] args ) throws PlivoXmlException {
Response response = new Response ()
. children (
new Speak ( "Sending Digits" ),
new Dtmf ( "12345" )
);
System . out . println ( response . toXmlString ());
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System ;
using System.Collections.Generic ;
using Plivo.XML ;
namespace Plivo
{
class MainClas
{
public static void Main ( string [] args )
{
Plivo . XML . Response resp = new Plivo . XML . Response ();
resp . AddDTMF ( "12345" ,
new Dictionary < string , string >() { });
var output = resp . ToString ();
Console . WriteLine ( output );
}
}
}
//<Response>
// <DTMF>12345</DTMF>
//</Response>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Example for xml - dtmf
package main
import "github.com/plivo/plivo-go/v7/xml"
func main () {
response := xml . ResponseElement {
Contents : [] interface {}{
new ( xml . SpeakElement ) .
SetContents ( "Sending Digits" ),
new ( xml . DTMFElement ) .
SetContents ( "12345" ),
},
}
print ( response . String ())
}
Example Request
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import plivoxml
from flask import Flask , Response
app = Flask ( __name__ )
@ app . route ( '/dtmf/' , methods = [ 'GET' , 'POST' ])
def dtmf ():
r = plivoxml . Response ()
r . addDTMF ( "12345" )
print r . to_xml ()
return Response ( str ( r ), mimetype = 'text/xml' )
if __name__ == '__main__' :
app . run ( host = '0.0.0.0' , debug = 'True' )
# Sample DTMF XML
# <Response>
# <Speak>Sending Digits</Speak>
# <DTMF>12345</DTMF>
# </Response>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'plivo'
include Plivo
response = Response . new ()
dtmf = "12345"
response . addDTMF ( dtmf )
puts response . to_xml ()
=begin
Sample Output
<Response>
<DTMF>12345</DTMF>
</Response>
=end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var plivo = require ( ' plivo ' );
var response = plivo . Response ();
var dtmf = " 12345 " ;
response . addDTMF ( dtmf );
console . log ( response . toXML ());
/*
Sample Output
<Response>
<DTMF>12345</DTMF>
</Response>
*/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
require '../vendor/autoload.php' ;
use Plivo\Response ;
$response = new Response ();
$dtmf = "12345" ;
$response -> addDTMF ( $dtmf );
Header ( 'Content-type: text/xml' );
echo ( $response -> toXML ());
/*
Sample Output
<Response>
<DTMF>12345</DTMF>
</Response>
*/
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import java.io.IOException ;
import com.plivo.helper.exception.PlivoException ;
import com.plivo.helper.xml.elements.Dtmf ;
import com.plivo.helper.xml.elements.PlivoResponse ;
import com.plivo.helper.xml.elements.Speak ;
import javax.servlet.ServletException ;
import javax.servlet.http.HttpServlet ;
import javax.servlet.http.HttpServletRequest ;
import javax.servlet.http.HttpServletResponse ;
import org.eclipse.jetty.server.Server ;
import org.eclipse.jetty.servlet.ServletContextHandler ;
import org.eclipse.jetty.servlet.ServletHolder ;
public class dtmf extends HttpServlet {
private static final long serialVersionUID = 1L ;
@Override
protected void doGet ( HttpServletRequest req ,
HttpServletResponse resp )
throws ServletException , IOException {
PlivoResponse response = new PlivoResponse ();
Dtmf dt = new Dtmf ( "12345" );
Speak speak = new Speak ( "Connecting your call.." );
try {
response . append ( speak );
response . append ( dt );
System . out . println ( response . toXML ());
resp . addHeader ( "Content-Type" , "text/xml" );
resp . getWriter (). print ( response . toXML ());;
} catch ( PlivoException e ) {
e . printStackTrace ();
}
}
public static void main ( String [] args ) throws Exception {
String port = System . getenv ( "PORT" );
if ( port == null )
port = "8000" ;
Server server = new Server ( Integer . valueOf ( port ));
ServletContextHandler context = new
ServletContextHandler ( ServletContextHandler . SESSIONS );
context . setContextPath ( "/" );
server . setHandler ( context );
context . addServlet ( new ServletHolder ( new
dtmf ()), "/dtmf" );
server . start ();
server . join ();
}
}
/*
Sample Output
<Response>
<Speak>Connecting your call..</Speak>
<DTMF>12345</DTMF>
</Response>
*/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System ;
using System.Collections.Generic ;
using Plivo.XML ;
namespace Plivo
{
class MainClas
{
public static void Main ( string [] args )
{
Plivo . XML . Response resp = new Plivo . XML . Response ();
resp . AddDTMF ( "12345" ,
new Dictionary < string , string >() { });
var output = resp . ToString ();
Console . WriteLine ( output );
}
}
}
//<Response>
// <DTMF>12345</DTMF>
//</Response>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Example for xml - dtmf
package main
import "github.com/plivo/plivo-go/v7/xml"
func main () {
response := xml . ResponseElement {
Contents : [] interface {}{
new ( xml . SpeakElement ) .
SetContents ( "Sending Digits" ),
new ( xml . DTMFElement ) .
SetContents ( "12345" ),
},
}
print ( response . String ())
}
🥳 Thank you! It means a lot to us!
Help Us Improve
Thank you so much for rating the page, we would like to get your input
for further improvements!
Thank you for your feedback!