Reputation: 21
For a client of mine I used the Soundcloud API to show tracks on his website. now it had stopped working, the API returns 0 tracks.
https://api.soundcloud.com/users/1525250/tracks?client_id=dec73200bd1c369969eb9df50f4a190b
I checked his account and all tracks have the right permissions.
,
What am I doing wrong?
(website of client) eelkekleijn.nl
Upvotes: 1
Views: 587
Reputation: 42469
SoundCloud allows certain users to block API requests. In this case, this user has blocked the ability to view their information via the SoundCloud API.
The only way around this is to use an API Key internal to SoundCloud, such as the one youtube-dl uses to download tracks.
Upvotes: 0
Reputation: 1379
All rate limits on the SoundCloud API are currently calculated against a client application's client id so you need to change your application client id
Eg.
https://api.soundcloud.com/users/1525250/tracks?client_id=02gUJC0hH2ct1EGOcYXQIzRFU91c72Ea
Upvotes: 0