如何使用SoundCloud API为用户显示playback_count

时间:2013-03-11 05:19:53

标签: api soundcloud

我正在尝试使用SoundCloud API显示特定SoundCloud用户的总曲目视图(“playback_count”)。

根据API文档,我使用以下函数调用获取信息:

http://api.soundcloud.com/tracks/13158665.json?client_id=YOUR_CLIENT_ID

这很好,因为它显示数字“13158665”。

这是多少?它是trackid吗?

我需要使用用户名为用户获取“playback_count”。

我尝试使用以下方法从用户名获取UserId:

$soundcloud_playsAPI = "MY_SOUNDCLOUD_API_KEY";

/* Get the SoundCloud UserId from the username */
$json = wp_remote_get("http://api.soundcloud.com/users/jwagener.json?client_id=".$soundcloud_playsAPI);

$soundcloudData = json_decode($json['body'], true);
$soundcloud_userid = $soundcloudData['id'];

返回UserId:3207181

现在我尝试将该响应替换为上一个URL以获取“playback_count”,但它失败了。

$json = wp_remote_get("http://api.soundcloud.com/tracks/3207181.json?client_id=".$soundcloud_playsAPI);
$soundcloudPlaysData = json_decode($json['body'], true);
echo $soundcloudPlaysData['playback_count'];

非常感谢任何指导。

感谢。

2 个答案:

答案 0 :(得分:1)

第一个数字是轨道的id,第二个数字是用户的id。

现在您拥有了用户ID,您需要获取每个曲目并记录他们播放的次数

首先,获取用户制作的所有曲目的ID号

获取:/ users / {id} / tracks:用户的曲目列表

$json = wp_remote_get("http://api.soundcloud.com/users/3207181/tracks.json?client_id=".$soundcloud_playsAPI);

现在您有一个曲目ID列表,因此您需要获取每个曲目并保存每个曲目的<_p>

$json = wp_remote_get("http://api.soundcloud.com/tracks/track-id-here.json?client_id=".$soundcloud_playsAPI);
$soundcloudPlaysData = json_decode($json['body'], true);
echo $soundcloudPlaysData['playback_count'];

答案 1 :(得分:0)

以下是完整的解决方案:

function listPlays() 
    {SC.initialize({  client_id: 'YOUR ID HERE'}); 
    // Get the SoundCloud UserId from the username 
    var userName="jwagener";
    SC.get("/users/"+userName,  function (users)
            {console.log(users.id);
            var myId=users.id;
            getTracks(myId);
            });

    var getTracks=function (myId)
        {var totalPlays=0;
        SC.get("/users/"+myId+"/tracks", function(getTracks)
            {for (var key in getTracks)    //get each track and look at it's playback_count
                {console.log(getTracks[key].title+"     "+getTracks[key].playback_count);
                totalPlays+=getTracks[key].playback_count;   //add the playback count for this track to the total
                }
            console.log("Total Plays for all tracks: "+totalPlays);

            });
        };

};