我正在尝试通过Android上的Volley库发出HTTP POST请求。
实际上,我想检索API返回给我的JSON对象。
API文档为我提供了这个有效的curl请求:
curl -H "Authorization: Token $API_KEY" \
--header "Content-Type: application/json" \
--compressed \
--data @- \
https://api.idbus.com/v1/search <<JSON
{
"origin_id": 1,
"destination_id": 17,
"date": "2015-08-15",
"passengers": [
{ "id": 1, "age": 30 },
{ "id": 2, "age": 30 },
{ "id": 3, "age": 1 }
]
}
JSON
但是我想通过Volley将其转换为HTTP请求。
问题是,当我启动代码时,当curl请求工作时会出现404错误。
我认为问题出在我将JSON对象传递到请求中的方式。 但我没有发现错误,希望有人可以帮助我,谢谢!!
这是我的代码:
String url = "https://api.idbus.com/v1/search";
final JSONObject jsonBody = new JSONObject();
JSONArray passengers = new JSONArray();
try {
passengers.put(getPerson(1, 30));
passengers.put(getPerson(2, 30));
passengers.put(getPerson(3, 1));
} catch (JSONException e){
e.printStackTrace();
}
try {
jsonBody.put("origin_id", 1);
jsonBody.put("destination_id", 17);
jsonBody.put("date", "2015-08-15");
jsonBody.put("passengers", passengers);
} catch (JSONException e){
e.printStackTrace();
}
JsonObjectRequest stringRequest = new JsonObjectRequest(Request.Method.POST, url, jsonBody,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
mTextView.setText(response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
mTextView.setText("That didn't work!");
}
}){
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String,String> params = new HashMap<String, String>();
params.put("Authorization", "Token EnVo01jqN2XJIAd8vlLkw");
params.put("Content-Type","application/json");
return params;
}
};
queue.add(stringRequest);
}
JSONObject getPerson(int id, int age) throws JSONException {
JSONObject person = new JSONObject();
person.put("id", id);
person.put("age", age);
return person;
}
我的Json对象看起来像:
{
"origin_id":1,
"destination_id":17,
"date":"2015-08-15",
"passengers":[
{
"id":1,
"age":30
},
{
"id":2,
"age":30
},
{
"id":3,
"age":1
}
]
}
答案 0 :(得分:1)
尝试从final
JSONObject中丢失jsonBody
编辑:
您正在以字符串形式发送int值,因此另一端的服务器可能对此并不满意: 您发送的内容:
{"origin_id":"1",
"destination_id":"17",
"date":"2015-08-15",
"passengers":[{"id":"1","age":"30"},{"id":"2","age":"30"},{"id":"3","age":"1"}]}
您应该发送:
{"origin_id":1,
"destination_id":17,
"date":"2015-08-15",
"passengers":[{"id":1,"age":30},{"id":2,"age":30},{"id":3,"age":1}]}
使用:
try {
passengers.put(getPerson(1, 30));
passengers.put(getPerson(2, 30));
passengers.put(getPerson(3, 1));
} catch (JSONException e){
e.printStackTrace();
}
try {
jsonBody.put("origin_id", 1);
jsonBody.put("destination_id", 17);
jsonBody.put("date", "2015-08-15");
jsonBody.put("passengers", passengers);
} catch (JSONException e){
e.printStackTrace();
}
对于getPerson
和int
,String
现在应该看起来像使用id
而不是age
:
JSONObject getPerson(int id, int age) throws JSONException
编辑2-有效的方法
嗯,尝试使用邮递员(getpostman.com)并从那里提交相同的POST,以查看引发什么错误,原因可能是服务器端问题
答案 1 :(得分:0)
params.put("Authorization", "Token EnVo01jqN2XJIAd8vlLkw");
删除Token
文本:
params.put("Authorization", "EnVo01jqN2XJIAd8vlLkw");