以编程方式使用TorrentFlux的下载操作

时间:2011-11-12 00:54:09

标签: php ubuntu curl

摘要:我正在编写一个脚本,自动从isohunt.com下载 .torrent 文件,然后将该torrent下载到 DOWNLOADS 文件夹。但是我无法下载torrent的内容。

我有一个种子文件( file.torrent )。我可以使用TorrentFlux的WebApp界面并下载torrent文件。但我想以编程方式开始下载。

我发现TorrentFLux WebApp使用这样的dispatcher.php文件开始下载:

dispatcher.php?action=start&transfer=_file.torrent

我正在尝试使用cUrl请求此文件,但它无效。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://localhost/torrentflux/html/dispatcher.php?action=start&transfer=file.torrent");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);

curl_close();

注意:我在这里问,因为Torrentflux官方论坛有数据库错误。

0 个答案:

没有答案