Skip to content

Instantly share code, notes, and snippets.

View chrismatthieu's full-sized avatar
🚀
Hacking the metaverse!

Chris Matthieu chrismatthieu

🚀
Hacking the metaverse!
View GitHub Profile
00079 00-1 03:10:05 AM Invalid API Type [type=null, url=http://tropovoice-io.appspot.com/messagings/create [click on link for full URL]
00080 00-1 03:10:05 AM Trying to create application for URL=http://tropovoice-io.appspot.com/messagings/create [click on link for full URL] and type=tropo-web
00081 00-1 03:10:05 AM Tropo app dir is c:\tropo_app_home
00082 00-1 03:10:05 AM Application[http://tropovoice-io.appspot.com/messagings/create [click on link for full URL] ver(1.0.42219) has been created.
00083 00-1 03:10:05 AM Found hosted Application[http://tropovoice-io.appspot.com/messagings/create [click on link for full URL] ver(1.0.42219) [token=4209df9d948c7a4bbeb07a8117c62b5f5614c13dd25919b855b08645dfeb69787685bb8bf3bb58456ee0ac17]
00084 00-1 03:10:05 AM Mgr Cached app=Application[http://tropovoice-io.appspot.com/messagings/create [click on link for full URL] ver(1.0.42219) for token=4209df9d948c7a4bbeb07a8117c62b5f5614c13dd25919b855b08645dfeb69787685bb8bf
#
1.
05-18 06:34AM 08.798 /incoming_call/index?tropo-engine=json 200 406ms 573cpu_ms 68api_cpu_ms 1kb Apache-HttpClient/4.0 (java 1.5),gzip(gfe)
See details
66.193.54.21 - - [18/May/2010:06:34:09 -0700] "POST /incoming_call/index?tropo-engine=json HTTP/1.1" 200 1066 "" "Apache-HttpClient/4.0 (java 1.5),gzip(gfe)" "tropovoice-io.appspot.com"
2.
I 05-18 06:34AM 08.820
#
1.
05-19 01:23PM 34.608 /messagings/create?tropo-engine=json 500 925ms 909cpu_ms 139api_cpu_ms 1kb Apache-HttpClient/4.0 (java 1.5),gzip(gfe)
See details
66.193.54.21 - - [19/May/2010:13:23:35 -0700] "POST /messagings/create?tropo-engine=json HTTP/1.1" 500 1040 "" "Apache-HttpClient/4.0 (java 1.5),gzip(gfe)" "myopenvoice.appspot.com"
2.
I 05-19 01:23PM 34.632
#
1.
05-19 03:24PM 01.388 /voice/index?tropo-engine=json 500 205ms 201cpu_ms 51api_cpu_ms 1kb Apache-HttpClient/4.0 (java 1.5),gzip(gfe)
See details
66.193.54.21 - - [19/May/2010:15:24:01 -0700] "POST /voice/index?tropo-engine=json HTTP/1.1" 500 1040 "" "Apache-HttpClient/4.0 (java 1.5),gzip(gfe)" "myopenvoice.appspot.com"
2.
I 05-19 03:24PM 01.419
#
1.
05-19 04:39PM 09.231 /voice/index?tropo-engine=json 500 123ms 133cpu_ms 1kb Apache-HttpClient/4.0 (java 1.5),gzip(gfe)
See details
66.193.54.21 - - [19/May/2010:16:39:09 -0700] "POST /voice/index?tropo-engine=json HTTP/1.1" 500 1034 "" "Apache-HttpClient/4.0 (java 1.5),gzip(gfe)" "myopenvoice.appspot.com"
2.
I 05-19 04:39PM 09.321
function makeCall() {
numberToDial = $("#destinationTxt").val();
// window.console.log("dialing " + numberToDial);
call = phone.dial(numberToDial, {
headers: {
did:"14803194368",
bling:"blaz"
},
onAnswer: function(event) {
// call.digit('16025551212');
<html>
<head>
<meta http-equiv="PRAGMA" content="NO-CACHE" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="/javascripts/jquery_1_4_2.js" type="text/javascript" ></script>
<script src="/javascripts/FABridge.js" type="text/javascript" ></script>
<script src="/javascripts/flashembed.min.js" type="text/javascript" ></script>
<script src="/javascripts/phono.js" type="text/javascript" ></script>
</head>
<body>
<html>
<head>
<meta http-equiv="PRAGMA" content="NO-CACHE" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="/javascripts/jquery_1_4_2.js" type="text/javascript" ></script>
<script src="/javascripts/FABridge.js" type="text/javascript" ></script>
<script src="/javascripts/flashembed.min.js" type="text/javascript" ></script>
<script src="/javascripts/phono.js" type="text/javascript" ></script>
</head>
<body>
$(document).ready(function() {
window.setInterval(function() {
try {
$("#phoneState").text(phone.state());
if(call != null) {
$("#callState").text(call.state());
if(call.state() == "connected"){
// event.getCall().digit("1");
call.digit("1");
Tropo Script:
mode = currentCall.getHeader("x-sbc-transfermode")
numbers = currentCall.getHeader("x-sbc-numbertodial").split(",")
if(mode == "one") {
for(number in numbers) {
result = transfer(number)
if(result.name = "success") {
break;