elitan / telavox-api-php-client
此包的最新版本(v0.0.3)没有提供许可证信息。
访问 Telavox API 的 PHP 客户端库
v0.0.3
2017-11-25 13:52 UTC
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: 6.3.0
This package is not auto-updated.
Last update: 2024-09-29 02:34:13 UTC
README
安装
composer require elitan/telavox-api-php-client
示例用法
<?php
require_once __DIR__ . '/vendor/autoload.php';
$api_host = 'https://api.telavox.se';
$telavox_username = '08123123123';
$telavox_password = 'secretpassword';
$telavox = new \Telavox\Telavox($api_host, $telavox_username, $telavox_password);
$calls = $telavox->calls();
var_dump($calls);
$telavox->dail('0046771567567');