【问题标题】:JSON Response from Django in AndroidAndroid 中来自 Django 的 JSON 响应
【发布时间】:2013-03-08 00:42:36
【问题描述】:

我正在尝试从基于 Django 的 Web 后端获取 Android 中的 JSON 响应。 我得到的回应是

03-19 16:32:32.120: I/System.out(7442): This si the response march API <!doctype html>  <!--[if IE 7]>    <html class="no-js ie7 oldie" lang="en"> <![endif]-->  <!--[if IE 8]>    <html class="no-js ie8 oldie" lang="en"> <![endif]-->  <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->  <head>    <meta charset="utf-8">    <title>ECOM</title>            <meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" >    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">            <meta name="description" content="">    <meta name="author" content="">        <meta name="apple-mobile-web-app-capable" content="yes" />        <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />            <meta property="og:image" content="http://www.domain.com/images/logo.png"/>    <meta property="og:title" content="-- description here --"/>    <meta property="og:url" content="http://www.domain.com"/>            <link rel="shortcut icon" href="/static/assets/img/favicon.ico" />    <link rel="apple-touch-icon" href="/static/assets/img/apple-touch-icon.png">    <link rel="apple-touch-icon" sizes="72x72" href="/static/assets/img/apple-touch-icon-72x72.png">    <link rel="apple-touch-icon" sizes="114x114" href="/static/assets/img/apple-touch-icon-114x114.png">             <link rel="stylesheet" href="/static/assets/css/styles.css" />                    <script src="/static/assets/js/libs/modernizr.custom.60077.js"></script>          <link rel="stylesheet" href="/static/assets/css/popup.css" />             <script src="/static/assets/js/jquery-1.7.2.min.js"></script>           <script src="/static/assets/authentication/js/popup.js"></script>    </head><body><div id="backgroundPopup"></div>      <div class="header" style="text-align:center; padding-top:10px;">       <img src="/static/assets/img/Ecomlogo.png"/>  </div>   <div class="container-fluid" roll="main" id="main">    <div class="span6"><a href="/track_me/scan_open/1/" class="forgotpass pull-right">Track Shipment</a>      <div class="login">        <div class="title">          Login                  </div>                <div class="content-login">          <form action="." method="POST">          <div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='xpfLvzIES8w6qzpi7kCFp0crWx9aZHGD' /></div>              <input type= "text" name ="username" placeholder="Username" class="user-name"/>            <input type= "Password" name="password" placeholder="Password"/>            <input type="submit" class="button-login"/>            <a href="#" class="forgotpass pull-right" id="forgotpass">Forgot Your Password?</a>          </form>        </div>      </div>    </div>    <div class="span6">      <div class="login">        <div class="title">          Ecom Express News                  </div>        <div class="content-login">                  </div>      </div>    </div>  </div>       <!-- modal -->  <div class="modal hide modal-add-revlet" id="add-revlet">    <div class="modal-header">      <a class="close" data-dismiss="modal">×</a>      <h3>Record</h3>    </div>    <div class="modal-body">          </div>  </div><!--modal end-->   <div id="popupContact">             <a id="popupContactClose">x</a>    </div>        <!-- uncomment pre-deloy -->  <!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>-->  <script>window.jQuery || document.write('<script src="assets/js/libs/jquery-1.7.1.min.js"><\/script>')</script>  <!-- bootstrap -->  <script src="/static/assets/js/bootstrap-transition.js"></script>  <script src="/static/assets/js/bootstrap-alert.js"></script>  <script src="/static/assets/js/bootstrap-modal.js"></script>  <script src="/static/assets/js/bootstrap-dropdown.js"></script>  <script src="/static/assets/js/bootstrap-scrollspy.js"></script>  <script src="/static/assets/js/bootstrap-tab.js"></script>  <script src="/static/assets/js/bootstrap-tooltip.js"></script>  <script src="/static/assets/js/bootstrap-popover.js"></script>  <script src="/static/assets/js/bootstrap-button.

Android 请求

private String GetPickUpDetails(String pick_up_id2) {

        StringBuilder response  = new StringBuilder();
        String stringUrl=Constants.PICKUP_DETAILS+pick_up_id2+"/";
        URL url;
        try {
            url = new URL(stringUrl);

            HttpURLConnection httpconn = (HttpURLConnection)url.openConnection();
            if (httpconn.getResponseCode() == HttpURLConnection.HTTP_OK)
            {
                BufferedReader input = new BufferedReader(new InputStreamReader(httpconn.getInputStream()),8192);
                String strLine = null;
                while ((strLine = input.readLine()) != null)
                {
                    response.append(strLine);
                }
                input.close();
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println("This si the response march API "+response.toString()+" for url"+stringUrl);
        return response.toString();


    }

Django 查看代码

def pickup_details(request,id):
        awb_dict={}
    if request.POST:
        print "this is post request",id 
        shipment_records=[]
        shippments=Shipment.objects.filter(pickup_id=id)

        for obj in shippments:
            awb=obj.airwaybill_number
            order_number=obj.order_number
            pincode=obj.pincode
            dest_sc=obj.service_centre
            type=obj.product_type
            if(type == "ccd"):
                col_val=obj.collectable_value
            else:
                col_val=""    
            status=obj.status
            city=obj.destination_city
            act_wt=obj.actual_weight
            dest_SC="hi"
            dest_SC=obj.service_centre
            #dest_SC=String(dest_SC).replace('-',' ')   
            record={"awb":awb,"ordernumber":order_number,"pincode":pincode,"weight":act_wt,"status":status,"city":city,"type":type,"col_value":col_val,"dest_SC":city}
            shipment_records.append(record)

        awb_dict["count"]=len(shipment_records)
        awb_dict["shipments"]=shipment_records
    #else:
         #pass

        return HttpResponse(simplejson.dumps(awb_dict) ) 

我不太确定,为什么我没有得到预期的 JSON 响应。手动点击 url 后,我得到了预期的 JSON 响应

编辑 1 这种方法我也试过了

try{
            URL url = new URL(stringUrl);
            HttpURLConnection httpconn = (HttpURLConnection)url.openConnection();
            if (httpconn.getResponseCode() == HttpURLConnection.HTTP_OK)
            {
                BufferedReader input = new BufferedReader(new InputStreamReader(httpconn.getInputStream()),8192);
                String strLine = null;
                while ((strLine = input.readLine()) != null)
                {
                    response.append(strLine);
                }
                input.close();
            }
        }catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return response.toString();
}

编辑 2 我得到的错误是 HTTP 403 Request 在尝试发送请求时,因为值没有到达 API 调用

编辑 3 我得到的 HTTP 响应为 200。代码的 HttpEntity entity = response.getEntity(); 的值是 org.apache.http.conn.BasicMangedEntity@4055505d0

【问题讨论】:

  • 您似乎没有发送正确的身份验证信息,并且您返回的错误页面显示了同样多的内容。
  • 也许您需要为请求发送标头:"Accept": "application/json"
  • @Perception , pbespechnyi 请你纠正我吗?
  • @onkar,我刚用谷歌搜索:icfun.blogspot.com/2009/08/…
  • 奇怪的是您得到的是 403 而不是 401,但无论如何,就像我之前所说的,您调用的服务看起来需要您在检索数据之前进行身份验证。在我们进一步帮助您之前,您需要找出它期望身份验证数据采用什么形式。

标签: java android django json


【解决方案1】:

响应将我重定向到我使用 @csrf_exempt 的自定义登录页面。代码需要进一步的登录详细信息来处理信息。我在调用的同时添加了登录参数,并获得了所需的响应

【讨论】:

    【解决方案2】:

    TL;DR
    httpconn.setRequestProperty("Accept", "application/json");


    HttpURLConnection 的默认“Accept”HttpHeader 值为text/html, image/gif, image/jpeg, *; q=.2, /; q=.2

    当使用text/html 时,django 返回用 HTML 包装的 JSON。如果需要纯 JSON,Accept HttpHeader 值应设置为'application/json'

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-04-12
      • 2016-08-06
      • 2017-09-24
      • 2017-12-01
      • 1970-01-01
      • 2019-05-09
      • 2019-02-09
      • 1970-01-01
      相关资源
      最近更新 更多