podcasthosting/auphonic-client

A PHP library to access the audio service Auphonic through its API.

v0.9 2023-02-24 11:03 UTC

This package is auto-updated.

Last update: 2024-04-24 13:36:22 UTC


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