我正在尝试使用截击发送一个Post请求但没有成功。
lib工作正常,我设法发送了一些字符串请求,但带有JsonObject的Post不起作用。
String urlJsonReq = "https://api.parse.com/1/classes/GameScore";
String tag_json_obj = "tag_json";
JsonObjectRequest jsonReq = new JsonObjectRequest(Request.Method.POST,
urlJsonReq,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d("MyApp", response.toString());
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
VolleyLog.d("MyApp", "Error: " + error.getMessage());
// hide the progress dialog
}
}) {
@Override
protected Map<String, String> getParams() {
Map<String, String> params = new HashMap<String, String>();
params.put("value1", "testValue1");
params.put("value2", "testValue2");
return params;
}
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
HashMap<String, String> headers = new HashMap<String, String>();
headers.put("X-Parse-REST-API-Key", "xxxxxxxxxxxx");
headers.put("X-Parse-Application-Id", "xxxxxxxxxxx");
return headers;
}
@Override
public String getBodyContentType() {
return "application/json";
}
};
我一直收到错误。我在某处读过,但没有任何细节,凌空无法发送JsonObjects,只接收。如果你想解决这个问题,你应该实现一个自定义类,但我真的不知道我是否只是在这里犯了一个愚蠢的错误(这是可能的)。
你们对此有所了解吗?
感谢您的时间。
答案 0 :(得分:2)
您可以在不覆盖getParams或getBodyContentType的情况下发送JSONObject。像这样的东西,例如
JSONObject object = new JSONObject();
JsonObjectRequest jr = new JsonObjectRequest(Request.Method.POST, url, object, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
显然,如果需要,可以覆盖标题。