Questions tagged [soundcloud]

SoundCloud is a social audio storage service and community. Their api allows for deep mashups, allowing access to nearly all track meta data, and provides streaming and downloads in various formats.

2097 questions
6
votes
0 answers

Soundcloud API returns 403 error on some track info

I'm getting tracks info via the API using the simple endpoint /tracks/. This works fine for most tracks but for some I get a 403 error. For example this one does't work: http://api.soundcloud.com/tracks/232273455?client_id= returns:…
fatz
  • 698
  • 7
  • 14
6
votes
1 answer

Cannot retrieve certain public tracks via SoundCloud API calls (403)

Some tracks in my playlist are not being returned when accessed via the SoundCloud API. For example, here are two tracks in my…
terranmoccasin
  • 453
  • 2
  • 7
6
votes
3 answers

Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline."

When I try to connect to soundcloud using below code: // Create the request. NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://soundcloud.com/api"] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData…
James
  • 227
  • 1
  • 2
  • 11
6
votes
2 answers

How is SoundCloud Auto Playing the next song on their mobile site?

Okay, so I know that iOS doesn't allow auto-play, but how is SoundCloud auto-playing the next song on their mobile site? I can get the next song I want to fill in the iframe src and the widget reloads to display that track. I have tried many…
Elliott McNary
  • 1,149
  • 3
  • 11
  • 20
6
votes
1 answer

How can I get the URL for an API if the URL I want is in the API's JSON?

So i'm using the soundcloud API to grab favorites from users. Their max limit is 200 per request, however in the end of the object they have an a_href key who's value is the next page of favorites. Basically, i'm trying to place a button so that a…
Elliott McNary
  • 1,149
  • 3
  • 11
  • 20
6
votes
2 answers

SoundCloud API v3 Stream not working in Chrome

I have been trying to get this to work for months but it's still not working. It works fine in all browsers except Google Chrome. The problem is audio doesn't stream in Chrome. Here's a JS fiddle of the most basic example.…
Aaron Lumsden
  • 424
  • 1
  • 5
  • 21
6
votes
1 answer

SoundCloud API returning 0 tracks despite user having tracks

I'm trying to get the tracks of specific users but for some users, even though they have tracks, the SoundCloud API return an empty list. For example, the following user has 17 tracks as you can see from his…
Yin Yang
  • 1,776
  • 3
  • 26
  • 48
6
votes
1 answer

SoundCloud SDK not receiving token callback in production environments, in Safari only

I'm wondering if this is a bug with a new SC SDK release that has gone out. Everything was working fine until of late. To replicate: open Safari go to: http://mixmatic.io login and look at the local storage from Mixmatic for auth. It will be…
Phil Hudson
  • 3,819
  • 8
  • 35
  • 59
6
votes
2 answers

Accessing soundcloud's lib/audiomanager via on-page JS

I maintain a greasemonkey script that monitors the current track playing as well as the progress on Soundcloud. Previously, I could just do require("lib/audiomanager") to get access to an object that would allow me to view the state of the entire…
Ditmar Wendt
  • 668
  • 4
  • 15
6
votes
0 answers

AVQueuePlayer (or AVPlayer) with a Soundcloud stream item block the UI (Main Thread)

Thank to those two posts, I resolve this problem during the creation of the AVPLayerItem AVQueuePlayer playback without gap and freeze AVPlayer "freezes" the app at the start of buffering an audio…
Damien Romito
  • 9,801
  • 13
  • 66
  • 84
6
votes
1 answer

Play SoundCloud stream uri in HTML 5 mp3 player (audio.js)

I would like to load tracks from SoundCloud and have them played in a HTML5 audio player provided by: http://kolber.github.io/audiojs/ I have it working with .mp3 files, as they do in the demo. I have also successfully connected to the SoundCloud…
6
votes
0 answers

Acessing Soundcloud Recommendations via HTTP API

I was wondering if soundcloud can make any recommendations to a user, based on the previous history. Specifically, I want to integrate that in my application. Following this https://developers.soundcloud.com/docs/api/reference , I couldnt find any
user3709636
  • 71
  • 1
  • 6
6
votes
1 answer

Soundcloud API - Why are stream_urls for a particular artist not working anymore (404)

my site streams Soundcloud tracks from various bands using SoundManager2 with the Soundcloud stream_url and added secret_token and client_id. All bands seem to be working except one, and I can't see anything in the API responses that show any…
6
votes
0 answers

SoundCloud API - genres and filter parameter of /tracks endpoint

I am using the SoundCloud API for a web application. With the /tracks endpoint, I have two troubles below. 1. When I send a request with an invalid genres parameters, does the /tracks endpoint return 503 (Service Unavailable)? When I intentionally…
en30
  • 61
  • 1
  • 4
6
votes
2 answers

how to authenticate Soundcloud API with redirect_uri (callback.html)

The final goal is to let users be able to upload / download files through the soundcloud API. I have registered my app, but now I have got problems with the authentication. In the app registration i must define a redirect URI for authentication,…
RobSeg
  • 985
  • 4
  • 14
  • 37