Reputation: 852
I've literally looked everywhere and cannot figure out how to find someones userid that I can use inside their embed code. Anyone know how to find it out?
Upvotes: 8
Views: 24967
Reputation: 69
If you have the soundcloud user name and just need to find the id (i used it to get the RSS feed for another user): Go to the soundcloud page (eg: https://soundcloud.com/50_cent), right click and view source, look for the id (eg: soundcloud://users:1548017). That's your user id: 548017
Upvotes: 3
Reputation: 136
Update:
First of all, use documentation Reference /resolve for up to date solution.
http://api.soundcloud.com/resolve?url=http://soundcloud.com/USER_NAME&client_id=YOUR_CLIENT_ID
Replace USER_NAME with user name from regular SoundCloud link like https://soundcloud.com/USER_NAME
, and you app's client ID.
Note, there is no .json
in /resolve
anymore.
Upvotes: 2
Reputation: 298
Simply take a look into the source head section.
<meta property="twitter:app:url:googleplay" content="soundcloud://users:IDHERE">
<meta property="twitter:app:url:iphone" content="soundcloud://users:IDHERE">
<meta property="twitter:app:url:ipad" content="soundcloud://users:IDHERE">
<meta property="twitter:player" content="https://w.soundcloud.com/player/?url=https%3A%2F%2Fapi.soundcloud.com%2Fusers%2FIDHERE&auto_play=false&show_artwork=true&visual=true&origin=twitter">
and several other meta tags ...
Upvotes: 12
Reputation: 605
Tim's project seems to be broken. Figured I'd just copy and paste the solution here. Thanks subZero!
curl -v 'http://api.soundcloud.com/resolve.json?url=http://soundcloud.com/YOUR_USER_NAME&client_id=YOUR_CLIENT_ID'
Upvotes: 11
Reputation: 5176
Check out What is my SoundCloud user_id?
from timpietrusky
:
http://timpietrusky.github.io/what-is-my-soundcloud-user-id/
If you want the user id of another user, you need to have their permalink (containing the username). Then you can use the /resolve endpoint from the API to get their data, including the id
Learn more on /resolve in the documentation
Upvotes: 6