Created
June 4, 2015 15:17
-
-
Save deanh/98e8ca27c68a45710f4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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