Posts

Showing posts with the label torrent

Java Jsoup downloading torrent file

Image
Clash Royale CLAN TAG #URR8PPP Java Jsoup downloading torrent file I got a problem, I want to connect to this website (https://ww2.yggtorrent.is) to download torrent file. I've made a method to connect to the website by Jsoup who work well but when I try to use it to Download the torrent file, the website return "You must be connected to download file". Here is my code to connect: Response res = Jsoup.connect("https://ww2.yggtorrent.is/user/login") .data("id", "<MyLogin>", "pass", "<MyPassword>") .method(Method.POST) .execute(); and here is my code to download file Response resultImageResponse = Jsoup.connect("https://ww2.yggtorrent.is/engine/download_torrent?id=285633").cookies(cookies) .ignoreContentType(true).execute(); FileOutputStream out = (new FileOutputStream(new java.io.File("toto.torrent"))); out.write(resultIm...