如何使用 php 转换 torrent 信息哈希以进行抓取?
谁能解释一下如何编写一个 php 脚本来转换信息哈希以进行抓取,以从跟踪器中获取播种者和同行计数...
谢谢
Can anyone explain me how to write a php script to convert info hash for scrape to get seeders and peers count from the tracker...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在此处查看答案 https://stackoverflow.com/a/3272202/3155632 转换 torrent 的信息哈希用于刮擦
或使用此:
<代码>
//Torrent 哈希 = bc801b9d9972c432decafe56410f092e5de15ea6
$packed_hash = urlencode( pack('H*', $hash_info ? $hash_info :'bc801b9d9972c432decafe56410f092e5de15ea6' ) );
回声 $packed_hash;
You can see the answer here https://stackoverflow.com/a/3272202/3155632 to convert info hash of a torrent for scrape
or use this :
//Torrent hash = bc801b9d9972c432decafe56410f092e5de15ea6
$packed_hash = urlencode( pack('H*', $hash_info ? $hash_info :'bc801b9d9972c432decafe56410f092e5de15ea6' ) );
echo $packed_hash;
您可以使用 www.bitsnoop.com 上的 Bitsnoop API
他们有一个非常简单的 API,您可以使用它来获取有关 torrent 的信息。
此外,您可以结合从 Bitsnoop 获得的数据并用于
获取下载链接等。
You can use the Bitsnoop API at www.bitsnoop.com
They have a very simple API you can use to get information about torrents.
In addition, you can combine the data you get from Bitsnoop and use
to get the download links etc.