uTorrent API添加url给出400个无效请求

时间:2014-02-27 20:26:15

标签: asp.net-web-api utorrent

为什么它会为以下代码提供400个错误请求。我们想使用utorrent的web API安排一个torrent。

import urllib2, base64

username = "username"
password = "password"

request = urllib2.Request("http://<my_ip>:<torrent_webapi_port>/gui/?action=add-url&s=%s" % urllib2.quote("http://torcache.net/torrent/CDADFE86960C3255EB37B15F7E45C281F3A3C937.torrent?title=[kickass.to]arrow.s02e14.hdtv.x264.lol.ettv"))
base64string = base64.encodestring('%s:%s' % (username, password)).replace('\n', '')
request.add_header("Authorization", "Basic %s" % base64string)
result = urllib2.urlopen(request)
print result.read()

1 个答案:

答案 0 :(得分:3)

请阅读以下令牌认证系统。

您应该在所有请求中发送一个名为“token =”的额外参数。 您可以从

获取token_value
  

的http://:utorrent_web_api_port / GUI / token.html

http://www.utorrent.com/community/developers/webapi#devs4

详细说明见以下链接。

https://github.com/bittorrent/webui/wiki/TokenSystem