使用HttpGet返回完整的HTML代码

时间:2012-03-21 13:10:24

标签: android web-services http-get

我正在尝试调用一个私有网络服务,其中有一个我要使用GET方法访问的链接。在浏览器上使用直接URL(需要先登录)时,我获得了JSON格式的数据。我正在调用的URL就像这样

 http://www.example.com/trip/details/860720?format=json

url工作正常,但是当我使用HttpGet调用它时,我得到的是网页的HTML编码,而不是JSON字符串。我使用的代码如下:

private String runURL(String src,int id) {   //src="http://www.example.com/trip/details/"
    HttpClient httpclient = new DefaultHttpClient();   
    HttpGet httpget = new HttpGet(src); 
    String responseBody="";
        BasicHttpParams params=new BasicHttpParams();
        params.setParameter("domain", token); //The access token I am getting after the Login
        params.setParameter("format", "json");
        params.setParameter("id", id);
        try {
                httpget.setParams(params);
                HttpResponse response = httpclient.execute(httpget);
                responseBody = EntityUtils.toString(response.getEntity());
                Log.d("runURL", "response " + responseBody); //prints the complete HTML code of the web-page
            } catch (Exception e) {
                e.printStackTrace();
        } 
        return responseBody;
}

你能告诉我这里我做错了什么吗?

1 个答案:

答案 0 :(得分:6)

尝试指定Accept& Content-Type在您的http标题中:

httpget.setHeader("Accept", "application/json"); // or application/jsonrequest
httpget.setHeader("Content-Type", "application/json");

请注意,您可以使用wireshark等工具捕获并分析收入和结果http包,并找出从标准浏览器返回json响应的http标头的确切样式。

<强>更新
您提到在使用浏览器时首先需要登录,返回的html内容可能是登录页面(如果使用基本身份验证类型,它会返回状态代码为401的简短html响应,因此现代浏览器知道如何处理,更具体地说,弹出登录提示给用户),所以第一次尝试将检查你的http响应的状态代码:

int responseStatusCode = response.getStatusLine().getStatusCode();

根据您使用的身份验证类型,您可能还需要在http请求中指定登录凭据,如下所示(如果是基本身份验证):

httpClient.getCredentialsProvider().setCredentials(
  new AuthScope("http://www.example.com/trip/details/860720?format=json", 80), 
  new UsernamePasswordCredentials("username", "password");