Java HTTP GET 请求给出 403 Forbidden,但在浏览器中有效

问题描述 投票:0回答:2

我有一些代码,旨在通过 HTTP 向服务器发送 GET 请求,并在那里获取数据。我还没有编写响应响应的部分,因为我首先想测试 GET 请求是否有效。但事实并非如此:

private static String fetch() throws UnsupportedEncodingException, MalformedURLException, IOException {
        // Set the parameters
        String url = "http://www.futhead.com";
        String charset = "UTF-8";

        //Fire the request
        try {
        URLConnection connection = new URL(url).openConnection();
        connection.setRequestProperty("Accept-Charset", charset);
        connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
        // ^^^ I tried this, and it doesn't help!
        InputStream response = connection.getInputStream();

        HttpURLConnection httpConnection = (HttpURLConnection) new URL(url).openConnection();
        httpConnection.setRequestMethod("GET");
        System.out.println("Status: " + httpConnection.getResponseCode());
        } catch (UnknownHostException e) {
            // stuff
        }
        return null;
        // ^^^ I haven't coded the fetching itself yet
    }

记住该代码,

fetch()
将打印
Status: 403
。为什么会发生这种情况?我的猜测是,这个特定的服务器不允许非浏览器客户端访问它(因为该代码适用于
http://www.google.com
),但是有解决方法吗?

已经有一些答案,但其中一些要么与我无关(他们谈论 HTTPS 的问题),要么难以理解。我已经尝试过那些我能理解的方法,但没有成功。

java http get
2个回答
3
投票

您可能启用了浏览器完整性检查 https://support.cloudflare.com/hc/en-us/articles/200170086-What-does-the-Browser-Integrity-Check-do-

我禁用了浏览器完整性检查,现在工作正常。如果可能的话,另一个解决方案是设置用户代理。

我在 Scala 中遇到了这个问题,它最终使用了 java.net.URL


0
投票

我也遇到了同样的问题。

我通过删除java启动参数解决了这个问题:-Djsse.enableSNIExtension = false

© www.soinside.com 2019 - 2024. All rights reserved.