Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 843 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 843 Bytes

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