II. Sending song title
In the Settings window, click "Log files (Reports)", enable HTTP Get request. In the URL put the following string:
http://tools.live365.com/cgi-bin/add_song.cgi?version=2&pass=MYPASSWORD&handle=MYLOGIN&title=%title&artist=%artist&album=%album
This is great, but I'd like to take it a step further. There is a
coverURL parameter for add_song.cgi that allows you to send the URL of a graphics file for displaying custom album cover art on a particular song (e.g., a station logo if an ID is played). Ultimately I'd like to use the %comment tag field to provide the URL, but for now I'm just providing the URL directly.
However, I can't get the parameter to work when sent from RadioBOSS. I know the URL has to be properly escaped, so a value like this:
coverURL=http://www.domain.com/logo.jpg
has to look like this:
coverURL=http%3A%2F%2Fwww%2Edomain%2Ecom%2Flogo%2Ejpg
...but it still doesn't work in RadioBOSS. I know the format of the whole http: link is correct because the artwork comes through when I send it directly, but it doesn't work when sent through RadioBOSS. Any ideas? Perhaps a truncation issue? Thanks.