调用AlchemyAPI时获取org.apache.http.client.ClientProtocolException

时间:2014-12-21 18:15:25

标签: java apache apache-httpclient-4.x alchemyapi

我在使用Apache HttpClient为org.apache.http.client.ClientProtocolException调用AlchemyAPI时获得TextGetTargetedSentiment

  

org.apache.http.ProtocolException:服务器无法响应有效的HTTP响应

以下是代码段。

URI uri = new URIBuilder()
    .setScheme("http")
    .setHost("access.alchemyapi.com/calls/text/TextGetTargetedSentiment")
    .setParameter("apikey", <api-key>)
    .setParameter("outputMode", "json")
    .setParameter("showSourceText", "0")
    .setParameter("target", <target>)
    .setParameter("text", <news article>)
    .build();

HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(uri);

// add header
post.setHeader("User-Agent", <user agent>);
post.setHeader("Content-Type", "application/x-www-form-urlencoded");

HttpResponse response = client.execute(post);

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

我怀疑你用于目标和文本的值可能有些奇怪,可能会搞砸了。如果此示例未澄清事项,请发送电子邮件至questions@alchemyapi.com以获取进一步支持。 以下适用于我:

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;

import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

public class Main {

 public static void main(String[] args) {
 try
 {
 HttpClient client = new DefaultHttpClient();

 String text = "Text analytics is fun with AlchemyAPI.";

 String API_KEY = ""; // Add your API key here

 URI uri = new URIBuilder()
 .setScheme("http")
 .setHost("access.alchemyapi.com/calls/text/TextGetTargetedSentiment")
 .setParameter("apikey", API_KEY)
 .setParameter("outputMode", "json")
 .setParameter("showSourceText", "1")
 .setParameter("target", "Text analytics")
 .setParameter("text", text)
 .build();

 HttpPost post = new HttpPost(uri);
 //the following headers aren't necessary for getting a response
 post.setHeader("User-Agent", "User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/21.0");
 post.setHeader("Content-Type", "application/x-www-form-urlencoded");

 System.out.println( "executing request " + post.getRequestLine());


 HttpResponse response = client.execute(post);
 String xmlString = EntityUtils.toString(response.getEntity());

 System.out.println(xmlString);
 } catch (UnsupportedEncodingException e) {
 // TODO Auto-generated catch block
 e.printStackTrace();
 } catch (ClientProtocolException e) {
 // TODO Auto-generated catch block
 e.printStackTrace();
 } catch (IOException e) {
 // TODO Auto-generated catch block
 e.printStackTrace();
 } catch (URISyntaxException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
 }
}

答案 1 :(得分:0)

我有类似的问题,在我的情况下,这是一个防火墙问题;它关闭了连接,因为它理所当然地发现它是可疑的。尝试关闭防火墙。