Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to access Soundcloud from a local HTML page on my laptop. I am stuck at the part of hosting "callback.html" as a redirect_uri. The script I am trying to run is the basic Authenication JavaScript from the Soundcloud documentation page:

<script src="http://connect.soundcloud.com/sdk.js"></script>
<script>
// initialize client with app credentials
SC.initialize({
  client_id: 'my_client_id',
  redirect_uri: 'http://127.0.0.1/Users/Maria/Documents/SoundcloudClient/callback.html'
});

// initiate auth popup
SC.connect(function() {
  SC.get('/me', function(me) { 
    alert('Hello, ' + me.username); 
  });
});
</script>

This script gets me to the connect pop-up when I launch the page in Chrome and Firefox. But, once I have logged in as a Soundcloud user, I get the following error:

Oops! Google Chrome could not connect to 127.0.0.1

If I change my redirect_uri to localhost I get the same error.

If I try:

files:///C:/Users/Maria/Documents/SoundcloudThinClient/callback.html

I get a similar error.

I also tried:

ocalhost:3000

and:

localhost:8080

even though I'm not sure what would be listening on those ports.

So, basically, I'm asking what path do I put for callback.html in order for this to work?

I confess I don't know how the redirct_uri actually functions. I looked at the Oauth pages for it, but I don't understand them. I am beginning to think that I can't simply create an HTML page, paste the JavaScript, create a callback.html file and have this work, even though the SC documentation seems to say that this is possible. If so, what steps am I missing?

share|improve this question

1 Answer

I am beginning to attempt this. I believe you have to go to the developer site and sign up as having an app. The redirect uri is asked for and the form gives you an API key you can use in your app.

I'm using drupal so, perhaps adding the oath module and using Php to add the api key might work well.

share|improve this answer
Is this an answer or a question? – Austin Henley Nov 13 '12 at 3:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.