如何使用 php 转换 torrent 信息哈希以进行抓取?

发布于 2024-11-05 03:23:02 字数 69 浏览 1 评论 0原文

谁能解释一下如何编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

来世叙缘 2024-11-12 03:23:02

您可以在此处查看答案 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;

时光与爱终年不遇 2024-11-12 03:23:02

您可以使用 www.bitsnoop.com 上的 Bitsnoop API

http://bitsnoop.com/info/api.html

他们有一个非常简单的 API,您可以使用它来获取有关 torrent 的信息。

此外,您可以结合从 Bitsnoop 获得的数据并用于

www.torrage.com

获取下载链接等。

You can use the Bitsnoop API at www.bitsnoop.com

http://bitsnoop.com/info/api.html

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

www.torrage.com

to get the download links etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文