podcasthosting / auphonic-client
A PHP library to access the audio service Auphonic through its API.
v0.9.3
2024-05-08 14:20 UTC
Requires
- php: >=7.2.0
- ext-json: *
- guzzlehttp/guzzle: ^7.5.0
- kriswallsmith/buzz: ^1.2.1
- league/oauth2-client: ^2.7
- nyholm/psr7: ^1.5.1
Requires (Dev)
- phpunit/phpunit: ^9.5.24
README
A PHP library to access the audio service Auphonic through its API.
Usage
Authentification with token
$token = ''; // Your Auphonic API token
$client = new \podcasthosting\Auphonic\Client();
$client->setToken($token);
alternatively with username/password
$username = ''; // Your Auphonic username
$password = ''; // Your Auphonic password
$client->allowUserPasswordAuthentification();
$client->setUsername($username);
$client->setPassword($password);
Access data
$client->setPreset(new \podcasthosting\Auphonic\Client\Preset());
$presets = $client->preset()->getList();
Used and created by Podcast Hosting service podcaster