I am building an HTML5 soundcloud player that will stream tracks of a specific (artist)user ONLY. Soundcloud tells me to hardcode the user's credentials and use the Authentication without Connect Screen method.
In my case, I want to avoid that because the user created his SC account using Facebook and has no credentials. Since, I can get information about tracks, comments etc without authentication. My question.
Is it possible to stream a track with just clientid, no user authentication?
Currently, a get request to the stream_url yields a 401 Unauthorized Error.
$.get(stream_url+'&client_id='+clientid,function(e){
console.log(e)}
401 Error Unauthorized
Thanks.