Soundcloud JSON from URL

<? //Get the SoundCloud URL $url="https://soundcloud.com/epitaph-records/this-wild-life-history"; //Get the JSON data of song details with embed code from SoundCloud oEmbed $getValues=file_get_contents('http://soundcloud.com/oembed?format=js&url='.$url.'&iframe=true'); //Clean the Json to decode $decodeiFrame=substr($getValues, 1, -2); //json decode to convert it as an array $jsonObj = json_decode($decodeiFrame); //Change the height of the embed player if you want else uncomment below line // echo $jsonObj->html; //Print the embed player to the page echo str_replace('height="400"', 'height="140"', $jsonObj->html);

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.