Skip to content

Instantly share code, notes, and snippets.

@deanh
Created June 4, 2015 15:17
Show Gist options
  • Save deanh/98e8ca27c68a45710f4f to your computer and use it in GitHub Desktop.
Save deanh/98e8ca27c68a45710f4f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head></head>
<body>
<script src="http://connect.soundcloud.com/sdk-2.0.0.js"></script>
<script>
// initialize client with app credentials
SC.initialize({
client_id: 'YOUR_CLIENT_ID',
});
// stream track id 293
SC.stream("/tracks/293", function(sound){
sound.play();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment