0
votes
1answer
35 views

Trying to specify a query param (q) works using SDK but returns 401 unauthorized from cURL

I am trying to do a search query on the SoundCloud API. Using their JavaScript SDK, the following works: SC.get('/tracks', { q: 'punk' }, function(tracks) { console.log(tracks); }); But if I try ...
0
votes
1answer
62 views

Sound Cloud returning 401 error

Recently I start work with Sound cloud API (PHP) and I decided to use PHP API by https://github.com/mptre/php-soundcloud. But When I am trying to get access token from Sound cloud server by this ...
0
votes
1answer
109 views

SoundCloud API : I can't decode Json data

I have an issue with SounCloud PHP wrapper. When I make an oembed request to the SounCloud API. This last one gives me back a string data. It's composed by something like a header and the JSON data. ...
1
vote
1answer
221 views

Soundcloud php curl program

I have some php and javascript experience and just started learning curl. Been messing around with remote logins to soundcloud. Eventually I want be able to follow or unfollow through my program. I've ...
0
votes
1answer
211 views

Grabbing a Soundcloud Image

Is it possible to grab the image URL of a Soundcloud Track Art using only Javascript & PHP? Can the same process be done to grabbing the download link of a Soundcloud Track? Any help is greatly ...
1
vote
1answer
445 views

SoundCloud and WWW::Curl::Form - 404 Not found

script that changes description of a track. I'm getting 404 error. Token and url are valid (works from the command line) sample: curl -X PUT "https://api.soundcloud.com/tracks/45272532.json" -F ...
0
votes
1answer
159 views

Soundcloud replying with json instead of xml as requested

In response to my request for an authorization token, Soundcloud is replying with a json string, although I'm asking for xml. Is this a bug, or is it unimplemented, or am I doing something wrong? ...
0
votes
1answer
376 views

Using “User Credentials” flow to get an authentication token via libcurl

I am trying to use the Soundcloud API to implement an integrated "export" function in an open-source DAW application (Ardour). At least for the first draft, it seems that the simplest method to get ...
1
vote
0answers
461 views

Soundcloud - Problems getting access token - get message invalid_client

I've registered an app on soundcloud.com I'm trying to login with oauth 2 and php using curl I can what seems to login ok but when go to exchange the token for the access code I get the follow error: ...
0
votes
1answer
762 views

Retrieving Soundcloud media URL via PHP CURL?

I'm using the Soundcloud API + PHP to pull information about soundcloud tracks in order to use jPlayer as a mp3 player for playlists. Now, I am able to completely access all the information about the ...