uTorrent API 添加网址,给出 400 个无效请求



为什么它对以下代码给出 400 个错误请求。我们想使用 utorrent 的 Web API 调度一个种子。

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()

请阅读以下令牌身份验证系统。

您应该在所有请求中发送一个名为"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

相关内容

  • 没有找到相关文章

最新更新