This might be a very simple answer, but I am unfamiiar with the Soundcloud API, so any help would be appreciated.
I am trying to access the Soundcloud API with PHP to access user details. I have obtained a soundcloud CLIENT_ID by activating my app through my personal soundcloud account, but it doesn't seem to work when accessing other public users information.
Does the CLIENT_ID change per user?
Does the app need to be validated/accepted by every user in order to access information such as song list, etc... (or can it be validated once) ?
The
CLIENT_ID
identifies your application. Requests that include aCLIENT_ID
can read any public information. A subset of user information is available with just aCLIENT_ID
. For example, theURI
:Will return the following JSON:
In order to access non-public information (e.g. private tracks, account plan, etc) you must have the user authorize your application. For more information on our OAuth implementation, see the documentation for authorizing server-side web applications.
Hope that helps!