Created
June 18, 2011 05:14
-
-
Save cwholt/1032827 to your computer and use it in GitHub Desktop.
turntable.fm download current playing song (adds to mouseover "Add song to:")
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
javascript:var cwh;for(i in turntable)cwh||(cwh=i);$('#songboard_add').append($('<div>',{'class':'btn disk'}).css({'background-image':'url(http://s3.firstrule.net/cwh/cwh_ttfm_disk_dark.png)'}).click(function(x){window.open(location.protocol+"//"+location.host+"/getfile/?roomid="+turntable[cwh]['roomId']+"&rand="+Math.random()+"&fileid="+turntable[cwh]['currentSong']['_id']+"&downloadKey="+$.sha1(turntable[cwh]['currentSong']['_id']+turntable[cwh]['roomId']))})) |
akivab, i'm simply duplicating what's in their code. whether or not they use the query strings "rand" -- which is most likely for cache busting -- or "downloadKey" now or plan on implementing additional security in the future on the backend is beyond my scope, so i thought it best to leave them in.
i think this is broken now
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dude, all you need is rand and roomid, other stuff there is to obfuscate.