callpage/api-php 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

callpage/api-php

最新稳定版本:1.0.7

Composer 安装命令:

composer require callpage/api-php

包简介

A PHP wrapper for CallPage API

README 文档

README

You can install callpage/api-php via composer or by downloading the source.

Via Composer:

callpage/api-php is available on Packagist as the callpage/api-php package.

Via ZIP file:

Click here to download the source (.zip) which includes all dependencies.

Once you download the library, move the callpage/api-php folder to your project directory and then include the library file:

require '/path/to/callpage/api-php/autoload.php';

and you're good to go!

A Brief Introduction

With the callpage-php library, we've simplified interaction with the CallPage REST API. No need to manually create URLS or parse XML/JSON. You now interact with resources directly.

Quickstart

Make a Call

Make a call to all of available managers. If managers are busy or after working hours or your account balance is not enough, the call won't be proceed, the SMS will be sent instead.

<?php
// Install the library via PEAR or download the .zip file to your project folder.
// This line loads the library in case without composer
require('/path/to/callpage/api-php/autoload.php');

$apiKey = "ACXXXXXX"; // Your API Key from http://callpage.io/settings/api
$widgetId = "YYYYYY"; // Your Widget ID from http://callpage.io/widgets

$callpage = new \Callpage\ApiPhp\Callpage($apiKey, $widgetId); //callpage API instance

//wraps method in try catch block
try {
    $callpage->callOrSchedule('+48570570570');
    
    //call was successfully done, your logic come here
    
}
catch (\Exception $e) {
    echo 'Something goes wrong! The reason: ' . $e->getMessage();
}

Full Documentation

Coming soon

Prerequisites

  • PHP >= 5.4.0
  • The PHP JSON extension
  • The PHP Curl extension

Getting help

If you need help installing or using the library, please contact Callpage Support at support@callpage.com first. CallPage's Support staff are well-versed in all of the CallPage Helper Libraries, and usually reply within 24 hours.

If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-28