我使用此代码来获取用户,但是如何使用此代码"喜欢"通过cURL&中的PUT请求的轨道PHP?
// build our API URL
$url = "http://api.soundcloud.com/resolve.json?"
. "url=http://soundcloud.com/"
. "USERNAME-HERE"
. "&client_id=CLIENT-ID-HERE";
// Grab the contents of the URL
$user_json = file_get_contents($url);
// Decode the JSON to a PHP Object
$user = json_decode($user_json);
// Print out the User ID
echo $user->id;
答案 0 :(得分:1)
请参阅SoundCloud API Documentation - /users。
您可以按照以下格式为具有PUT请求的用户收藏曲目:
/users/{user_id}/favorites/{track_id}
如果你不知道如何制作cURL请求,那么谷歌就会有数百个关于StackOverflow的教程和答案。这是一个例子: