I'm trying to retrive source code for this website but instead I'm getting another source code where it says " Please wait while we try to verify your browser...
If you are stuck on this page disable your browser addons ..."
is there any way around that?
P.s (I'm runing that on my phone that has no addons)
Code:
recTorrentsURl = new URL("https://rarbg.to/torrents.php");
HttpsURLConnection con = null;
con = (HttpsURLConnection) recTorrentsURl.openConnection();
con.setRequestMethod("GET");
is = con.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is));
StringBuilder total= new StringBuilder();
String line;
while((line= br.readLine())!=null){
total.append(line).append('\n');
}