HttpClient5如何设置代理

有时候,不是因为你没有能力,也不是因为你缺少勇气,只是因为你付出的努力还太少,所以,成功便不会走向你。而你所需要做的,就是坚定你的梦想,你的目标,你的未来,然后以不达目的誓不罢休的那股劲,去付出你的努力,成功就会慢慢向你靠近。

导读:本篇文章讲解 HttpClient5如何设置代理,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

说明

在这篇文章中会对HttpClient5如何进行代理进行说明,我的HttpClient版本是5.2.1。在进行代理之前请先准备好代理服务器

原始HttpClient

下面是没有进行代理设置的代码,尝试去访问openai接口

    @Test
    public void t1() throws IOException {
        String url = "https://api.openai.com/v1/chat/completions";
        HttpPost httpPost = new HttpPost(url);
        try (CloseableHttpClient client = HttpClients.createDefault()) {
            client.execute(new HttpHost("api.openai.com"), httpPost, response -> {
                System.out.println(response);
                return null;
            });
        }
    }

运行这个代码,不出意外的运行失败了

image-20230512232346694

代理HttpClient

在HttpClient比较早的版本是通过setProxy方法来进行代理设置的,但是现在这个方法已经废弃了

        @Deprecated
        public Builder setProxy(final HttpHost proxy) {
            this.proxy = proxy;
            return this;
        }

在现在的版本中我们应该使用DefaultProxyRoutePlanner,下面就是应该简单用法,在new的时候传入一个HttpHost即可,指定要代理的主机和端口

        HttpHost proxy = new HttpHost("127.0.0.1", 7890);
        DefaultProxyRoutePlanner routePlanner = new DefaultProxyRoutePlanner(proxy);

下面的代码就使用代理去访问openai的接口

    @Test
    public void t2() throws IOException {
        //要访问的网址
        String url = "https://api.openai.com/v1/chat/completions";
        HttpHost proxy = new HttpHost("127.0.0.1", 7890);
        DefaultProxyRoutePlanner routePlanner = new DefaultProxyRoutePlanner(proxy);

        HttpPost httpPost = new HttpPost(url);
        try (CloseableHttpClient client = HttpClients.custom().setRoutePlanner(routePlanner).build()) {
            client.execute(new HttpHost("api.openai.com"), httpPost, response -> {
                System.out.println(response);
                return null;
            });
        }
    }

使用的代理之后代码就能够访问openai的接口了

image-20230512233339784

总结

使用代理其实很简单,就是调用下setRoutePlanner方法

CloseableHttpClient client = HttpClients.custom().setRoutePlanner(routePlanner).build()

异步请求也是类似的

CloseableHttpAsyncClient asyncClient = HttpAsyncClients.custom().setRoutePlanner(routePlanner).build();

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/146216.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!