Get a user's Most Recent SoundCloud Track Links

旧时模样 提交于 2019-12-05 19:18:32

The answer is simple

http://api.soundcloud.com/users/<USER_ID>/tracks.json?client_id=APP_ID

hitting it like this:

http://api.soundcloud.com/users/jakuboboza/tracks.json?client_id=APP_ID 

you get:

[{"kind":"track","id":3481075,"created_at":"2010/06/16 12:27:20   +0000","user_id":1187050,"duration":1331,"commentable":true,"state":"finished","original_content_size":15835,"sharing":"public","tag_list":"","permalink":"nl-lul","description":"","streamable":true,"downloadable":false,"genre":"","release":"","purchase_url":null,"purchase_title":null,"label_id":null,"label_name":"","isrc":"","video_url":null,"track_type":"","key_signature"...

sort it by created_at and profit :)

Cheers! Hope this helps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!