运行我的代码时拒绝连接,这可能是与proxy有关的问题.如何解决? [英] Getting Connection refused while running my code, it might be an issue related to proxy.how to fix it?

查看:86
本文介绍了运行我的代码时拒绝连接,这可能是与proxy有关的问题.如何解决?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

//This is my code for returning json response from twitter api which works fine when i am not behind any proxy server 

import oauth.signpost.OAuthConsumer;
import oauth.signpost.commonshttp.CommonsHttpOAuthConsumer;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONArray;

public class TwitterFeeds {

    static String AccessToken = "xxxx";
    static String AccessSecret = "xxxx";
    static String ConsumerKey = "xxxx";
    static String ConsumerSecret = "xxxx";

    public static void main(String[] args) throws Exception { 
        OAuthConsumer consumer = new CommonsHttpOAuthConsumer(ConsumerKey, ConsumerSecret);
        consumer.setTokenWithSecret(AccessToken, AccessSecret);

        HttpGet request = new     HttpGet("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=xxxx&count=2"); 

        consumer.sign(request);
        HttpClient client = new DefaultHttpClient();       
        HttpResponse response = client.execute(request);
        String json_string = EntityUtils.toString(response.getEntity());
        System.out.println(json_string);
        JSONArray  obj = new JSONArray (json_string);
        System.out.println(obj.toString());
    }
}

//我在代理服务器后面,该服务器阻止了我的请求,当我不在任何代理服务器后面时,代码运行正常.并且出现以下错误

// I am behind a proxy server which is blocking my request, the code works fine when i am not behind any proxy server.And getting following error

Exception in thread "main" org.apache.http.conn.HttpHostConnectException: Connection to https://api.twitter.com refused
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:158)
    at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:149)
    at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:121)
    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:562)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:415)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:754)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:732)
    at TwitterFeeds.main(TwitterFeeds.java:47)
Caused by: java.net.ConnectException: Connection timed out: connect
    at java.net.DualStackPlainSocketImpl.connect0(Native Method)
    at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
    at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
    at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:374)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:148)
    ... 8 more

这是我正在显示连接被拒绝的错误.以及用于按用户获取tweets(json格式)的代码,当我不在任何代理服务器后面时可以使用,而当我不在代理服务器后面时则无法使用

This is error which i ma getting showing connection refused. and the code for getting tweets(json format) by user and works when i am not behind any proxy server and does not work when i am behind proxy server

推荐答案

我相信您的HttpGet请求缺少您的代理设置.

I believe that your HttpGet request is missing your proxy settings.

您应该执行以下操作:

// Here you set your proxy host and port
HttpHost proxy = new HttpHost(<your_proxy_addess>, <port>); 
DefaultProxyRoutePlanner routePlanner = new DefaultProxyRoutePlanner(proxy);
HttpClient client = HttpClients.custom().setRoutePlanner(routePlanner).build();
HttpResponse response = client.execute(request);

如果您认为提供任何类型的代理凭据是必要的,则应采用以下方法:

If you see that's necessary to provide any type of proxy credentials, then the following approach should be taken:

  • 创建您的HttpGet请求

HttpHost proxy = new HttpHost(<your_proxy_addess>, <port>);
RequestConfig config = RequestConfig.custom().setProxy(proxy).build();
HttpGet request = new HttpGet("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=xxxx&count=2");
request.setConfig(config);

  • 向您的HttpClient提供凭据:

  • Provide your credentials to your HttpClient:

    CredentialsProvider credsProvider = new BasicCredentialsProvider();
    credsProvider.setCredentials(
            new AuthScope(<your_proxy_addess>, <port>),
            new UsernamePasswordCredentials("user", "passwd"));
    
    HttpClient client = HttpClients.custom()
            .setDefaultCredentialsProvider(credsProvider).build();
    HttpResponse response = client.execute(request);
    

  • 这篇关于运行我的代码时拒绝连接,这可能是与proxy有关的问题.如何解决?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    相关文章
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆