我正在尝试使用utorrent-api库node.js
,例如:
request({'uri' : 'http://releases.ubuntu.com/13.04/ubuntu-13.04-desktop-i386.iso.torrent', 'encoding': null}, function (error, response, torrentFileBuffer) {
utorrent.call('add-file', {'torrent_file': torrentFileBuffer}, function(err, data) {
if(err) { console.log('error : '); console.log(err); return; }
console.log('Successfully added torrent file !');
console.log(data);
});
});
我在控制台中收到此错误:
error :
{ [Error: read ECONNRESET] code: 'ECONNRESET', errno: 'ECONNRESET', syscall: 'read' }
我可以通过以下方式连接到 uTorrent:
utorrent.call('list', function(err, torrents_list) {
console.log(torrents_list);
});
而且我得到了正确的种子列表。我试图将 .torrent 文件保存到磁盘,看起来没问题,所以问题出在文件上传上。
uTorrent 3.3 在 Linux 上运行。WebUI 正在运行,我可以通过浏览器上传 .torrent 文件。如何调试此错误?