Skip to content

podcasthosting/auphonic-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

auphonic-client

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