Tagged Questions
0
votes
1answer
18 views
SoundCloud Official Java ApiWrapper, requests with saved token get rejected with 401
I'm able to authenticate correctly and get a valid token when I enter username and password, then I'm intending to store this token so returning users don't have to enter again the username and ...
0
votes
0answers
48 views
Update image url of soundcloud set
How can i update the image of a soundcloud set using the java api wrapper? Any ideas?
1
vote
0answers
64 views
Search by geo filter with soundcloud api
When attempting to search for tracks based on 'geo' filter I always get back zero results. According to the documentation you can use * as a wildcard to search lat/lon ranges that exist in the ...
0
votes
1answer
113 views
Soundcloud Flash Widget, trying to play next song on page
I'm creating a personal blog with my friend where we are uploading our favorite songs via soundcloud and want songs to play one after another.
This is the general idea of what each song will be ...
0
votes
1answer
173 views
How to update a playlist using SoundCloud api wrapper for java
The soundcloud documentation has no sample for updating a playlist using java wrapper. I tried something like this but it didn't update the tracks. And no error messages returned.
HttpResponse resp = ...
1
vote
1answer
132 views
Order for search with soundcloud api
How can i get the sort order of my search results to be just like the one at soundcloud.com? When i search at soundcloud.com; it doesn't look it's sorted for hotness or created_at.
0
votes
0answers
92 views
Soundcloud api search result stability
if someone of the soundcloud staff could answer this it would be much appreciated.
I am using the Java wrapper for the API. I had a piece of code working very well, searching for users located in a a ...
0
votes
1answer
138 views
Soundcloud JAVA api wrapper : SSLPeerUnverifiedException
When using the soundcloud JAVA wrapper for the API,
ApiWrapper wrapper = new ApiWrapper("id","secret", null, null, Env.SANDBOX);
try {
wrapper.login("user", "pw"); // fail here
} catch ...
0
votes
1answer
134 views
Soundcloud JAVA api wrapper : SSLException
When using the soundcloud JAVA wrapper for the API
i get the following SSL error
javax.net.ssl.SSLException: hostname in certificate didn't match:
api.soundcloud.com/178.249.136.151 != ...
0
votes
1answer
162 views
SoundCloud 503 - Service Unavailable
When I have request to SoundCloud API sometimes I have "Error 503 - Service Unavailable". What is it and how it repair?
0
votes
1answer
1k views
how can i play soundcloud streams on android?
i'm using the code in the documentation of the MediaPlayer;
String url = "http://........"; // your URL here
MediaPlayer mediaPlayer = new MediaPlayer();
...
0
votes
1answer
272 views
Java Peer Not Autheticated
I'm trying to get OAuth through SoundCloud set up, but I'm having tremendous trouble. My newest issue is this:
I have the user login through a popup window which is connected to SoundCloud. It gives ...
0
votes
1answer
1k views
HTTP POST Request in Java .setRequestMethod() Does Nothing
I am absolutely tearing my hair out over this one.
I'm trying to make a HTTP POST request in Java, but it keeps sending it as a GET instead. I followed several different ways to send a POST request, ...