承接 hoiio/hoiio-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hoiio/hoiio-php

最新稳定版本:v0.06

Composer 安装命令:

composer require hoiio/hoiio-php

包简介

Hoiio API provides telephony services such as call, SMS and interactive voice responses (IVR). This SDK makes using the API a breeze.

README 文档

README

hoiio-php is a PHP SDK for Hoiio's Voice and SMS API. It encapsulates the REST communications and let developers use the API via a few simple classes.

Currently, hoiio-php supports the Call, SMS, Account, Hoiio Number and IVR APIs.

Requirements

  • PHP 5 >= 5.1
  • PHP JSON extension
  • PHP cURL extension

Installation

Just download and extract the package into your project folder. You should be able to see a hoiio-php/ folder.

Or if you are using composer, you can add this to your composer.json

{
    "require": {
        "hoiio/hoiio-php": "*"
    }
}

Usage

You will be able to access all of Hoiio's API via the HoiioService class. Check the docs for details.

// E.g. Sending SMS
require 'hoiio-php/Services/HoiioService.php';

$h = new HoiioService("myAppID", "myAccessToken");
$txnRef = $h->sms("+651111111", "hello world");
print("SMS sent successfully. TxnRef: $txnRef\n");

// E.g. Building IVR
require 'hoiio-php/Services/HoiioService.php';

$h = new HoiioService("myAppID", "myAccessToken");
$notify = $h->parseIVRNotify($_POST);
$session = $notify->getSession();
$key = $notify->getDigits();

$h->ivrPlay($session, '', "You just pressed $key.");

License

This project is under MIT License. See LICENSE file for details.

Contact Us

If you have any questions, please feel free to contact us:

统计信息

  • 总下载量: 2.67k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 0
  • Forks: 11
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-01-23