Last active
September 24, 2015 17:17
-
-
Save tupton/782174 to your computer and use it in GitHub Desktop.
An example curl script to post song information to Scrobbular
This file contains 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
curl -X POST \ | |
--data-urlencode "[email protected]" \ | |
--data-urlencode "s=secret" \ | |
--data-urlencode "track=Red Sky" \ | |
--data-urlencode "artist=Thrice" \ | |
--data-urlencode "album=Vheissu" \ | |
--data-urlencode "duration=258" \ | |
http://scrobbular.appspot.com/scrobble |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment