我试图检索this网站的源代码,但我得到了另一个源代码,其中说的是"请等待我们尝试验证您的浏览器...
如果您被困在此页面上,请停用您的浏览器插件..."
那有什么办法吗?
P.s(我在没有插件的手机上运行)
代码:
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');
}
答案 0 :(得分:1)
看起来该网站有一些ddos /脚本保护(我认为是cloudflare)
如果您可以更改“工具”以更改标题,则应该可以绕过此标准。
例如httrak(工具)你可以更改你的请求标题并设置延迟等待x秒,然后再提取所有内容,这将绕过这个问题,请等待我们验证你的浏览器..