Soundcloud content retrieval without a client ID. Is it at all possible?

天涯浪子 提交于 2019-12-06 06:34:16

My suggestion would be to use an existing public API key, for example, the CLIENT_ID youtube-dl uses to download SoundCloud tracks.

You'll first need to get the id from the username. We'll use the /resolve endpoint for this:

HTTP GET: http://api.soundcloud.com/resolve?url=http://soundcloud.com/{username}&client_id={CLIENT_ID}

Then, get the user's tracks from the /users/{id}/tracks endpoint:

HTTP GET: https://api.soundcloud.com//users/{id}/tracks
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!