Skip to content

Instantly share code, notes, and snippets.

@rebhichaouki
Forked from danielribeiro/us.html
Created June 4, 2017 18:11
Show Gist options
  • Save rebhichaouki/dafc1d77489818384015d382346ed839 to your computer and use it in GitHub Desktop.
Save rebhichaouki/dafc1d77489818384015d382346ed839 to your computer and use it in GitHub Desktop.
soundcloud us
<!DOCTYPE html>
<html>
<head>
<script src="underscore-min.js"></script>
<script src="http://connect.soundcloud.com/sdk.js"></script>
</head>
<body>
<h1>My Amazing Underscore project</h1>
<div id="content">
</div>
<script>
console.log("initialized");
SC.initialize({
client_id: 'd4c9ff1b3aaa3e397abbf4aa470e736e'
});
// SC.get('/users/reginaspektor/tracks', function(tracks) {
// console.log(tracks)
// });
SC.stream("/tracks/63061619", function(sound){
console.log("playing sound");
sound.play();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment