Jump to content

Autoload from RSS


johnstar

Recommended Posts

May be I am jump the gun a bit' date=' since that the sw still in alpha. It would be very nice to have RSS autodownload like the MS-win version.[/quote']

RSS functionality is in the server; it's just not in the web UI. You can issue requests for it via HTTP.

I'm also interested on this issue. Cloud you please clarify it?

Link to comment
Share on other sites

RSS functionality is inside the daemon, but the current Linux webui interface has no functionality to submit RSS commands to it.

You can use various Linux utilities to submit HTTP GET commands to utserver to make it do what you want. For example, the ?action=rss-update command will add a new feed. In most cases the command is a simple one-liner that you could submit with Curl, but by default utserver will be configured to need token auth which means making a call to get a token and cookie, followed by a separate call including the token and cookie to submit the RSS feed.

Here is an example which lists all torrents and RSS feeds:

First the command to get the token (note that user/pass in in .netrc):

export token=$(curl -G -s -c ~/.utorrent/ucookie.txt -n http://192.168.0.4:8080/gui/token.html|sed 's/<[^<>]*>//g')

And the command to submit the list command:

curl -G -s -n -b ~/.utorrent/ucookie.txt -d token=$token -d list=1 http://192.168.0.4:8080/gui/

Just a quick and dirty example, but it should get you started. The API RSS commands are documented in the documentation you downloaded with utserver.

Or there is a Python CLI utility which may do what you need: http://forum.utorrent.com/viewtopic.php?id=85684

Link to comment
Share on other sites

hi,

im currently on doze 7 and love having the RSS feed in uTorrent from EZTV as I never have to worry about checking the net for new episodes. I have ubuntu installed too but am reluctant to make the final change over and leave MS behind because of this feature. Is it now working? And is there now a version out that isn't through WINE?

It's been a couple of years since I made the return to the darkside...

Chur

Link to comment
Share on other sites

  • 2 weeks later...

You can just use your browser to update rss feeds. for example:

http://<host>:<port>/gui/?action=rss-update&download_dir=0&url=http://bit.ly/apQWW1&alias=Dexter&subscribe=1&enabled=1&update=1

* use a url shortner for your rss urls if they contain ampersands(&)

* you may need to disable token auth (see settings in web-ui)

* for all api calls see included documentation

Link to comment
Share on other sites

You can just use your browser to update rss feeds. for example:

http://<host>:<port>/gui/?action=rss-update&download_dir=0&url=http://bit.ly/apQWW1&alias=Dexter&subscribe=1&enabled=1&update=1

* use a url shortner for your rss urls if they contain ampersands(&)

* you may need to disable token auth (see settings in web-ui)

* for all api calls see included documentation

But there is no auto feature so I don't have to do anything like before in windows? And uTorrent is now available in ubuntu or still under WINE?

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...
  • 4 weeks later...
  • 2 weeks later...
  • 2 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...