Skip to content

Instantly share code, notes, and snippets.

Created April 18, 2011 21:46
Show Gist options
  • Save anonymous/ad1175a86ffa88d3e267 to your computer and use it in GitHub Desktop.
Save anonymous/ad1175a86ffa88d3e267 to your computer and use it in GitHub Desktop.
var sys = require('sys');
var http = require('http');
require('tropo-webapi');
var server = http.createServer(function (request, response) {
var tropo = new TropoWebAPI();
tropo.call("+14074095231", {
network: "SMS"
});
tropo.say("Tag, you're it!!");
response.end(TropoJSON(tropo));
}).listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment