0

我在解析和发送请求时遇到了很大的麻烦。在请求正文中,我必须发送一个我在认证时已经成功获得的令牌。这是一个文档:

PUT /api/ver1/orders {“令牌”:字符串,“订单”:对象}

以下是我解析和获取 JSONObject 的方法:

JSONObject jsonObject = new JSONObject();
JSONObject params = new JSONObject();
params.put(ICConst.ORDER_TYPE, 1);
params.put(ICConst.PAYMENT, 2);
params.put(ICConst.ORDER_NAME, ICApplication.currentOrder .getOrderName());
params.put(ICConst.ORDER_DESCRIPTION, ICApplication.currentOrder .getOrderDescription());

JSONObject addressFrom = new JSONObject();
addressFrom.put(ICConst.CITY_FROM, ICApplication.currentOrder .getCityFrom());
addressFrom.put(ICConst.ADDRESS_FROM, ICApplication.currentOrder .getAddressFrom());
params.put(ICConst.FROM, addressFrom);

JSONObject periodFrom = new JSONObject();
periodFrom.put(ICConst.DATE_FROM, ICApplication.currentOrder .getDateFrom());
periodFrom.put(ICConst.TIME_FROM_START, ICApplication.currentOrder .getTimeFromStart());
periodFrom.put(ICConst.TIME_FROM_TILL, ICApplication.currentOrder .getTimeFromTill());
params.put(ICConst.FROM_PERIOD, periodFrom);

JSONObject addressTo = new JSONObject();
addressTo.put(ICConst.CITY_TO, ICApplication.currentOrder .getCityTo());
addressTo.put(ICConst.ADDRESS_TO, ICApplication.currentOrder .getAddressTo());
params.put(ICConst.TO, addressTo);

JSONObject periodTo = new JSONObject();
periodTo.put(ICConst.DATE_TO, ICApplication.currentOrder .getDateTo());
periodTo.put(ICConst.TIME_TO_START, ICApplication.currentOrder .getTimeToStart());
periodTo.put(ICConst.TIME_TO_TILL, ICApplication.currentOrder .getTimeToTill());
params.put(ICConst.TO_PERIOD, periodTo);

JSONObject sender = new JSONObject();
JSONArray senderPhone = new JSONArray();
sender.put(ICConst.SENDER_NAME, ICApplication.currentOrder .getSenderName());
senderPhone.put(0, ICApplication.currentOrder .getSenderPhone());
sender.put(ICConst.SENDER_PHONE, senderPhone);
params.put(ICConst.SENDER, sender);

JSONObject recipient = new JSONObject();
JSONArray recipientPhone = new JSONArray();
recipient.put(ICConst.RECIPIENT_NAME, ICApplication.currentOrder .getRecipientName());
recipientPhone.put(0, ICApplication.currentOrder .getRecipientPhone());
recipient.put(ICConst.RECIPIENT_PHONE, recipientPhone);
params.put(ICConst.RECIPIENT, recipient);

JSONObject receiver = new JSONObject();
receiver.put(ICConst.RECEIVED_NAME, ICApplication.currentOrder .getReceiverComment());
receiver.put(ICConst.RECEIVED_COMMENT, ICApplication.currentOrder .getReceiverComment());
params.put(ICConst.RECEIVED_BY, receiver);

params.put(ICConst.CARGO, getCargo());
jsonObject.put("order", params);
jsonObject.put("token", ICApplication.currentProfile.getToken());

这是 Httpput 请求

HttpPut httpPut = new HttpPut(getAbsoluteUrl(url));
httpPut.setHeader(HTTP.CONTENT_TYPE,
        "application/x-www-form-urlencoded");
String str = String.valueOf(jsonObject);
StringEntity entity = new StringEntity(str, "UTF-8");
entity.setContentType("application/json");
entity.setContentType("application/x-www-form-urlencoded");
httpPut.setEntity(entity);
HttpResponse response = httpclient.execute(httpPut);
String request = inputStreamToString(response.getEntity().getContent());
Log.v("requestStringEntity", entity + "!");
Log.v("request", request + "!");

另一个变体是当我使用 com.loopj.android.http.AsyncHttpClient 时。我没有其他的 get、patch 和 post请求,除了PUT之外一切都正常工作。这是我得到的代码:

public static void put(Context context, String url, JSONObject jsonObject, AsyncHttpResponseHandler handler) {

StringEntity entity = null;
try {
    entity = new StringEntity(jsonObject.toString());
    entity.setContentEncoding("UTF-8");
    entity.setContentType("application/x-www-form-urlencoded");
} catch (UnsupportedEncodingException _e) {
    _e.printStackTrace();
}
client.setURLEncodingEnabled(true);
client.put(context, getAbsoluteUrl(url), entity, "application/json", handler);
}

这是 entuty/jsonObject 字符串:

{"token":"b695911b-2973-11e6-acac-06b720391567","order":{"order_type":"1","payment_type":"2","name":"Какой-то груз","成本":"350","描述":"","从":{"纬度":"55.15919993700593","经度":"65.15919993700593"},"fromPeriod":{"date":"1464944049","从":"15","to":"18"},"to":{"city":"Челябинск","address":"Ленина, 3, 3"},"toPeriod":{"date" :"1464944075","from":"15","to":"18:30"},"sender":{"name":"Попов","comment":"Попов","电话":["+70000009111"]},"收件人":{"姓名":"Иванов Иван Иваныч","comment":"Иванов Иван Иваныч","电话":["70000009112"]},"货物" :[{"name":"wwww","description":"wwww","size":{"height":"2","width":"3","length":"4"}," loaders_count":"1","does_need_pa​​ckaging":false}]}}"宽度":"3","长度":"4"},"loaders_count":"1","does_need_pa​​ckaging":false}]}}"宽度":"3","长度":"4"},"loaders_count":"1","does_need_pa​​ckaging":false}]}}

我不是 Rest 和 httprequest 方面的专业人士,所以我不知道问题出在哪里,并且在第一个 put 方法中仍然有一个异常:

{"name":"Bad Request","message":"No API token found","code":0,"status":400,"type":"yii\web\HttpException"}

如果有人有想法请帮助我!

4

1 回答 1

1

试试这个,而不是

String str = String.valueOf(params);

我认为应该是

String str = String.valueOf(jsonObject);

因为您将令牌添加到 jsonObject 而不是参数。

于 2016-06-07T11:22:25.077 回答