PHP code example of tiniyo / tiniyo-php

1. Go to this page and download the library: Download tiniyo/tiniyo-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tiniyo / tiniyo-php example snippets


// Send an SMS using tiniyo's REST API and PHP

$sid = "ACXXXXXX"; // Your Account SID from https://tiniyo.com
$token = "YYYYYY"; // Your Auth Token from https://tiniyo.com

$client = new Tiniyo\Rest\Client($sid, $token);
$message = $client->messages->create(
  '8881231234', // Text this number
  [
    'from' => '9991231234', // From a valid Tiniyo number or approved senderid
    'body' => 'Hello from Tiniyo!'
  ]
);

print $message->sid;


$sid = "ACXXXXXX"; // Your Account SID from https://tiniyo.com
$token = "YYYYYY"; // Your Auth Token from https://tiniyo.com

$client = new Tiniyo\Rest\Client($sid, $token);

// Read tinixml at this URL when a call connects (hold music)
$call = $client->calls->create(
  '8881231234', // Call this number
  '9991231234', // From a valid Tiniyo number
  [
      'url' => 'https://raw.githubusercontent.com/tiniyo/public/master/answer_speak.xml'
  ]
);

$sid = "ACXXXXXX"; // Your Account SID from https://tiniyo.com
$token = "YYYYYY"; // Your Auth Token from https://tiniyo.com

$client = new Tiniyo\Rest\Client($sid, $token);
$client->setLogLevel('debug');


$response = new Tiniyo\Tinixml\VoiceResponse();
$response->say('Hello');
$response->play('https://api.tiniyo.com/cowbell.mp3', ['loop' => 5]);
print $response;

composer