To assist our developers to quickly build enterprise grade voice enable applications, TringMe has released source code for it's widgets. It can be downloaded from here.
Below are sample examples of how easy it is to use TringMe APIs.
Following is an implementation of a Click To Call application using TringMe APIs.
<?php
include_once ("tringmehelper.php");
$publickey = "yourpublicapikey";
$privatekey = "yourprivateapikey";
$callsrc ='18585551111';
$calldest ='18585552222';
TringMeClick2Call($privatekey, $publickey, $callsrc ,$calldest);
?>
Following is an implementation of how to send an SMS using TringMe APIs.
<?php
include_once ("tringmehelper.php");
$publickey = "yourpublicapikey";
$privatekey = "yourprivateapikey";
$destination ='18585552222';
TringMeSendSMS($privatekey, $publickey, $destination, "Hello World");
?>
More examples can be found in the code samples available for download here









