Skip to content

Instantly share code, notes, and snippets.

@tupton
Last active September 24, 2015 17:17
Show Gist options
  • Save tupton/782174 to your computer and use it in GitHub Desktop.
Save tupton/782174 to your computer and use it in GitHub Desktop.
An example curl script to post song information to Scrobbular
curl -X POST \
--data-urlencode "username=test@example.com" \
--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