Skip to content

Instantly share code, notes, and snippets.

@paulosman
Created September 7, 2012 03:56
Show Gist options
  • Save paulosman/3662946 to your computer and use it in GitHub Desktop.
Save paulosman/3662946 to your computer and use it in GitHub Desktop.
Create set with artwork - PHP SDK Example
<?php
require_once 'Services/Soundcloud.php';
$client = new Services_Soundcloud('client_id', 'client_secret');
$client->setAccessToken('access_token');
$playlist = array(
'playlist[title]' => 'My Playlist',
'playlist[artwork_data]' => '@/path/to/file.jpg'
);
$response = json_decode($client->post('playlists', $playlist));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment