認証なしでsoundcloud APIを介して特定のユーザーからトラックリストを取得するには:
(JavaScript の例)
SC.initialize({
client_id: "YOUR_CLIENT_ID",
redirect_uri: "http://example.com/callback.html",
});
/**
Once that's done you are all set and ready to call the SoundCloud API.
**/
/**
Call to the SoundCloud API.
Retrieves list of tracks, and displays a list with links to the tracks showing 'tracktitle' and 'track duration'
**/
var userId = 39090345; // user_id of Prutsonic
SC.get("/tracks", {
user_id: userId,
limit: 100
}, function (tracks) {
for (var i = 0; i < tracks.length; i++) {
console.log(tracks[i].title);
}
});
ここで私のフィドルを試すことができます: http://jsfiddle.net/tobiasbeuving/26pHX/5/
(PHP の例:)
try {
$tracks = $client->get('tracks', array('user_id' => '39090345','limit' => 100));
} catch (Services_Soundcloud_Invalid_Http_Response_Code_Exception $e) {
print $e->getMessage();
}
(同様の質問に答えたところです。Soundcloud stratus プレーヤーは一度に複数のトラックを動的に追加することはありませんが、「重複した質問」の状況を処理する方法がわかりません。
乾杯、T