PHP code example of philwc / subsonic-api-client

1. Go to this page and download the library: Download philwc/subsonic-api-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

philwc / subsonic-api-client example snippets


// Assumes the config items are in the environment (via dotenv etc.)
$config = new \philwc\Configuration(getenv('SUBSONIC_URL'), getenv('SUBSONIC_USER'), getenv('SUBSONIC_PASSWORD'))

\philwc\ClientFactory::setConfiguration($config);

$createPlaylist = \philwc\ClientFactory::get(\philwc\Call\Playlist\CreatePlaylist::class, $config);

$createPlaylist(['name' => 'Test Playlist', 'songId' => 1]);