RSS Torrent List from Onlinetvrecorder.com
January 5th, 2009 AnsiMoin
Onlinetvrecorder disabled the good old RSS where I can get the list of my torrents of recorded movies. Unfortunatelly the new RSS link requires a session cookie what is not so easy with a bash script. Here is a small solution how to enable the automatic download of the RSS stream in order to download the feeds automatically.
First get an session cookie for www.onlinetvrecorder.com and store it into a local file.
wget \ --save-cookies ~/.cookies/onlinetvrecorder \ --keep-session-cookies \ --post-data "email=name%40provider.com&pass=whatever&checkbox_remember=checkbox_remember&btn_login=Login&do=login" \ -O - \ http://www.onlinetvrecorder.com/index.php \ > /dev/null
With this command you store the onlinetvrecorder session key to a file what you can use later on to download the RSS feed. “keep-session-cookies” are important because the key is only valid in the session. Replace “name”, “provider.com” and “whatever” with your personal data. the “%40″ is url code for @.
wget -o /dev/null -O - --load-cookies ~/.cookies/onlinetvrecorder "http://www.onlinetvrecorder.com/rss/rss.php?hash=hashcode&userid=id"
Also replace “hashcode” and “id” with your personal data. You can see it in the browser when you check the RSS feed in your browser. Thats all. I think the uTorrent or other trackers can deal with a local file to parse. So just use a cronjob to store this file from time to time to local disc and let uTorrent do the rest.








