Skip to content

tropo/tropo-webapi-php

This branch is 121 commits ahead of, 3 commits behind mheadd/tropo-webapi-php-original:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9144837 · Aug 10, 2018
Nov 25, 2013
Aug 10, 2018
Sep 30, 2011
Feb 18, 2013
Sep 9, 2010
Nov 23, 2011
Aug 21, 2017
Jun 6, 2012
Aug 10, 2018

Repository files navigation

Overview

TropoPHP is a set of PHP classes for working with Tropo's cloud communication service. Tropo allows a developer to create applications that run over the phone, IM, SMS, and Twitter using web technologies. This library communicates with Tropo over JSON.

Requirements

  • PHP 5.6 or greater
  • PHP Notices disabled (All error reporting disabled is recommended for production use)

Usage

Answer the phone, say something, and hang up.

<?php    
require 'tropo.class.php';

$tropo = new Tropo();    
// Use Tropo's text to speech to say a phrase.    
$tropo->say('Yes, Tropo is this easy.', array('name' => 'sayName'));    

// Render the JSON back to Tropo.
$tropo->renderJSON();    
?>    

Asking for input.

<?php
require 'tropo.class.php';

$tropo = new Tropo();
$tropo->ask('What is your favorite programming language?', array(
  'choices'=>'PHP, Ruby(Ruby, Rails, Ruby on Rails), Python, Java(Groovy, Java), Perl',
  'event'=> array(
    'nomatch' => 'Never heard of it.',
    'timeout' => 'Speak up!',
    )
  ));
// Tell Tropo how to continue if a successful choice was made
$tropo->on(array('event' => 'continue', 'say'=> 'Fantastic! I love that, too!'));
// Render the JSON back to Tropo    
$tropo->renderJSON();
?>

About

A set of PHP classes for working with the Voxeo Tropo WebAPI

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%