0
是否有可能在未經授權的情況下從開放組獲得曲目? 我使用PHP API,我在這裏找到解決方案:https://groups.google.com/forum/?fromgroups#!topic/soundcloudapi/XfxvE2P6P0c 但它不起作用。我可以在沒有授權的情況下獲得曲目嗎?
正如我看到的JS Api可以做到的。
有沒有解決方法?
是否有可能在未經授權的情況下從開放組獲得曲目? 我使用PHP API,我在這裏找到解決方案:https://groups.google.com/forum/?fromgroups#!topic/soundcloudapi/XfxvE2P6P0c 但它不起作用。我可以在沒有授權的情況下獲得曲目嗎?
正如我看到的JS Api可以做到的。
有沒有解決方法?
上傳我的課: http://pastebin.com/xg6Y5rsR
用途:
<form action="index.php" method="post">
Url soundcloud: <input type="text" name="fname" /><br />
<input type="submit" value="Submit" />
</form>
<?php
if($_POST['fname']){
include("class.soundcloud.php");
$sCloud = new soundCloud();
$filename = $sCloud->exploserChaine($_POST['fname']);
$link = $sCloud->exploserChaine($sCloud->getMp3($_POST['fname']));
if(!$link)
echo("No links !");
else
echo ('<a href="http://media.soundcloud.com/stream/'.$link['5'].'?stream_token=Own3d">Download '.$filename['5'].'.mp3</a>');
}
玩得開心;)