I am trying to use the soundcloud resolve to get track id from a soundcloud url.
My code is:
require_once 'Services/Soundcloud.php';
$client = new Services_Soundcloud('CLIENT_ID');
$track = json_decode($client->get('resolve', array('url' => $form_link)));
$soundcloud_id -> id;
When I run this, I get the error:
Fatal error: require_once(): Failed opening required 'Services/Soundcloud.php'
Where do I get 'Services/Soundcloud.php' from?
Do I need to link to this on the soundcloud website, or do I need to download include files?