我在 SoundCloud API 的一些教程中看到了按热度排序的能力。例如 PHP 中的以下内容:
// create a client object with your app credentials
$client = new Services_Soundcloud('APP KEY');
// find all sounds of buskers licensed under 'creative commons share alike'
$tracks = $client->get('tracks', array('genre' => json_encode($tag), 'limit' => '20', 'order' => 'hotness')); // array('q' => 'dubstep'));
$tracks=json_decode($tracks);
die(var_dump($tracks));
然而,这会返回一个包含 0 次播放的曲目列表,并且在 SoundClouds 文档中没有提到这种排序: