My application just stopped receiving authentication tokens from soundcloud. I use php api and send the request as:
$client = new Services_Soundcloud(CLIENT_ID, CLIENT_SECRET, REDIRECT_URL); $code = $_GET['code']; $access_token = $client->accessToken($code);
He returns me the following answer in the morning:
{"errors":[{"meta":{"rate_limit":{"bucket":"by-ip","max_nr_of_requests":100,"time_window":"PT1H","group":"oauth2_token"},"remaining_requests":0,"reset_time":"2015/08/13 12:03:38 +0000"}}]}
Until the last night, it worked perfectly with the same code.
Vipul source share