我正在研究bittorrent协议,想尝试一些跟踪器请求以获取有关同级和事物的信息,但是我无法从我尝试过的任何跟踪器中收到任何适当的响应
这些就是我的参数的样子
{'info_hash': '7bf74c4fd609bf288523f7cd51af3bdbc19df610', 'peer_id': '139a3f2ff0143c9f24c19c4f95ed1378aaf449d2', 'port': '6881', 'uploaded': '0', 'downloaded': '0', 'left': '931135488', 'compact': '1', 'no_peer_id': '0', 'event': 'started'}
import bencoding
import hashlib
import secrets
import requests
import urllib
file = open('../altlinux.torrent', 'rb')
data = bencoding.bdecode(file.read())
info_hash = hashlib.sha1(bencoding.bencode(data[b'info'])).hexdigest()
params = {
'info_hash': info_hash,
'peer_id': secrets.token_hex(20),
'port': '6881',
'uploaded': '0',
'downloaded': '0',
'left': str(data[b'info'][b'length']),
'compact': '1',
'no_peer_id': '0',
'event': 'started'
}
print(params)
page = requests.get(data[b'announce'], params=params)
print(page.text
这就是我写的,并且我遇到同样的错误,
d14:failure reason50:Torrent is not authorized for use on this tracker.e
我什至尝试将info_hash编码为
urllib.parse.quote_plus(info_hash)
只是为了使其成为采用hexdigest的url编码格式
我不确定我要去哪里错 有人可以帮忙吗?
答案 0 :(得分:0)
您需要传递原始info_hash
,而不是其编码版本。 peer_id
也是如此:
params = {
'info_hash': bytes.fromhex(info_hash),
'peer_id': bytes.fromhex(secrets.token_hex(20)),
'port': '6881',
'uploaded': '0',
'downloaded': '0',
'left': str(data[b'info'][b'length']),
'compact': '1',
'no_peer_id': '0',
'event': 'started'
}
此外,应该指出的是,这仅适用于单个文件种子。当您看到一个包含多个文件的文件时,要获取长度的方式将需要处理torrent中的files
元素,因为这些文件没有length
条目。
答案 1 :(得分:0)
info_hash
不应是 hex 表示。应该是 binary 表示形式。即您需要对其进行URL编码。即不要致电.hexdigest()
。
当您调用urllib.parse.quote_plus(info_hash)
时,您似乎正在对信息哈希的十六进制表示形式进行URL编码。即仍然是十六进制编码。
您可能想使用类似urllib.parse.quote(info_hash)