dialonce/sdk
Composer 安装命令:
composer require dialonce/sdk
包简介
The Dial Once PHP SDK
README 文档
README
This git repository contains the Dial Once PHP SDK composer package.
Installation
composer require dialonce/sdk
Usage
IVR
For all of the IVR exposed method usage, you will need to instanciate an Application object using your api key and secret:
<?php $application = new DialOnce\Application('API_KEY', 'API_SECRET');
The code above will generate a token by calling our API. If your script is not persistant in memory or if you don't have APC, you may want to use a previously fetched token directly:
<?php $application = new DialOnce\Application('API_TOKEN');
Log a call step to Dial Once
To allow us to gather analytics, and provide you some important KPI info, we need to get some call steps from your IVR:
<?php $ivr = new DialOnce\IVR($application, $callerNumber, $calledNumber); $ivr->log('call-start'); $ivr->log('call-end'); $ivr->log('call-error'); //etc.
$application: a DialOnce\Application object instance
$callerNumber: a string, the caller phone number (inter. format with leading +)
$calledNumber: a string, the IVR phone number that the user called (inter. format with leading +)
Check if a caller is eligible to use the Dial Once service
<?php $ivr = new DialOnce\IVR($application, $callerNumber, $calledNumber); if ( $ivr->isEligible() ) { }
$application: a DialOnce\Application object instance
$callerNumber: a string, the caller phone number (inter. format with leading +)
$calledNumber: a string, the IVR phone number that the user called (inter. format with leading +)
The user requested the Dial Once service
<?php $ivr = new DialOnce\IVR($application, $callerNumber, $calledNumber); $ivr->serviceRequest();
$application: a DialOnce\Application object instance
$callerNumber: a string, the caller phone number (inter. format with leading +)
$calledNumber: a string, the IVR phone number that the user called (inter. format with leading +)
Check if the caller uses a mobile phone
<?php $ivr = new DialOnce\IVR($application, $callerNumber, $calledNumber); if ($ivr->isMobile()) { }
$application: a DialOnce\Application object instance
$callerNumber: a string, the caller phone number (inter. format with leading +)
$calledNumber: a string, the IVR phone number that the user called (inter. format with leading +)
dialonce/sdk 适用场景与选型建议
dialonce/sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 1, 最近一次更新时间为 2016 年 06 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sdk」 「dialonce」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dialonce/sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dialonce/sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dialonce/sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP SDK for the Enconvert file conversion API
支付宝开放平台v3协议文档,支持最新版PHP8+
Merchant-side PHP SDK for YoPay Pay Open API.
SDK oficial da API AurePay para PHP (tipado via OpenAPI)
SDK oficial da API AureEX para PHP (tipado via OpenAPI)
Usgm PHP Library
统计信息
- 总下载量: 16
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-06-23