denostr / binotel-api
Клиент для работы с API Binotel
Installs: 17 802
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 6
Open Issues: 1
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-10-27 05:46:54 UTC
README
Установка
Рекомендуется установка через composer:
$ composer require denostr/binotel-api
или добавить
"denostr/binotel-api": "~0.1"
в файл composer.json
Использование
try {
$client = new \denostr\Binotel\Client('KEY', 'SECRET');
$settings = $client->settings;
$voiceFiles = $settings->listOfVoiceFiles();
print_r($voiceFiles);
} catch (\denostr\Binotel\Exception $e) {
printf('Error (%d): %s' . PHP_EOL, $e->getCode(), $e->getMessage());
}