我正在尝试在Volley JsonObjectRequest中发送POST参数。最初, 它正在为我工作 ,遵循官方代码所说的传递包含JsonObjectRequest构造函数中的参数的JSONObject。然后它突然停止工作,我没有对以前工作的代码进行任何更改。服务器不再识别正在发送任何POST参数。这是我的代码:
RequestQueue queue = Volley.newRequestQueue(this);
String url ="http://myserveraddress";
// POST parameters
Map<String, String> params = new HashMap<String, String>();
params.put("tag", "test");
JSONObject jsonObj = new JSONObject(params);
// Request a json response from the provided URL
JsonObjectRequest jsonObjRequest = new JsonObjectRequest
(Request.Method.POST, url, jsonObj, new Response.Listener<JSONObject>()
{
@Override
public void onResponse(JSONObject response)
{
Toast.makeText(getApplicationContext(), response.toString(), Toast.LENGTH_SHORT).show();
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error)
{
Toast.makeText(getApplicationContext(), error.toString(), Toast.LENGTH_SHORT).show();
}
});
// Add the request to the RequestQueue.
queue.add(jsonObjRequest);
以下是服务器上的简单测试人员PHP代码:
$response = array("tag" => $_POST["tag"]);
echo json_encode($response);
我得到的回复是{"tag":null}
昨天,它工作正常,并在{"tag":"test"}
回复
我没有改变任何一件事,但今天它已经不再有用了。
在Volley源代码构造函数javadoc中,它表示您可以在构造函数中传递JSONObject以在“@param jsonRequest”中发送post参数: https://android.googlesource.com/platform/frameworks/volley/+/master/src/main/java/com/android/volley/toolbox/JsonObjectRequest.java
/ **
*创建新请求 * @param方法使用的HTTP方法
* @param url用于从中获取JSON的URL * @param jsonRequest用{@link JSONObject}发布请求。 Null是允许的和
*表示不会随请求一起发布参数。
我已阅读其他类似问题的帖子,但解决方案对我没用:
Volley JsonObjectRequest Post request not working
Volley Post JsonObjectRequest ignoring parameters while using getHeader and getParams
Volley not sending a post request with parameters.
我已经尝试将JsonObjectRequest构造函数中的JSONObject设置为null,然后覆盖并设置“getParams()”,“getBody()”和“getPostParams()”方法中的参数,但这些参数都没有覆盖对我有用。另一个建议是使用一个基本上创建自定义请求的辅助类,但该修复对我的需求来说有点过于复杂。如果归结为它我会做任何事情来使它工作,但我希望有一个简单的原因,为什么我的代码 工作,然后只是 已停止 ,也是一个简单的解决方案。
答案 0 :(得分:37)
您只需要从参数的HashMap中创建一个JSONObject:
String url = "https://www.youraddress.com/";
// POST Body
Map<String, String> params = new HashMap();
params.put("first_param", "1");
params.put("second_param", "2");
JSONObject parameters = new JSONObject(params);
JsonObjectRequest jsonRequest = new JsonObjectRequest(Request.Method.POST, url, parameters, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
//TODO: handle success
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
error.printStackTrace();
//TODO: handle failure
}
});
Volley.newRequestQueue(this).add(jsonRequest);
答案 1 :(得分:33)
我最终使用了Volley的StringRequest,因为我在尝试使JsonObjectRequest工作时花费了太多宝贵的时间。
RequestQueue queue = Volley.newRequestQueue(this);
String url ="http://myserveraddress";
StringRequest strRequest = new StringRequest(Request.Method.POST, url,
new Response.Listener<String>()
{
@Override
public void onResponse(String response)
{
Toast.makeText(getApplicationContext(), response, Toast.LENGTH_SHORT).show();
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error)
{
Toast.makeText(getApplicationContext(), error.toString(), Toast.LENGTH_SHORT).show();
}
})
{
@Override
protected Map<String, String> getParams()
{
Map<String, String> params = new HashMap<String, String>();
params.put("tag", "test");
return params;
}
};
queue.add(strRequest);
这对我有用。它就像JsonObjectRequest一样简单,但改为使用String。
答案 2 :(得分:11)
我有类似的问题,但我发现问题不是在客户端,而是在服务器端。发送JsonObject
时,需要像这样获取POST对象(在服务器端):
在PHP中:
$json = json_decode(file_get_contents('php://input'), true);
答案 3 :(得分:7)
您可以使用StringRequest执行与JsonObjectRequest相同的操作,同时仍然可以轻松发送POST参数。你唯一要做的就是从你得到的请求String中创建一个JsonObject,然后从那里继续,就像它是JsonObjectRequest一样。
StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
//Creating JsonObject from response String
JSONObject jsonObject= new JSONObject(response.toString());
//extracting json array from response string
JSONArray jsonArray = jsonObject.getJSONArray("arrname");
JSONObject jsonRow = jsonArray.getJSONObject(0);
//get value from jsonRow
String resultStr = jsonRow.getString("result");
} catch (JSONException e) {
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
}){
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> parameters = new HashMap<String,String>();
parameters.put("parameter",param);
return parameters;
}
};
requestQueue.add(stringRequest);
答案 4 :(得分:2)
使用JSONObject对象发送参数意味着HTTP POST请求正文中的参数将采用JSON格式:
Map<String, String> params = new HashMap<String, String>();
params.put("tag", "test");
params.put("tag2", "test2");
JSONObject jsonObj = new JSONObject(params);
将创建此JSON对象并将其插入HTTP POST请求的正文中:
{"tag":"test","tag2":"test2"}
然后服务器必须解码JSON才能理解这些POST参数。
但通常HTTP POST参数在正文中写入:
tag=test&tag2=test2
但现在问题是为什么Volley以这种方式设置?
读取HTTP POST方法的服务器应该通过标准总是尝试读取JSON中的参数(除了纯文本),因此没有完成的服务器是坏服务器?
或者,使用JSON中的参数的HTTP POST主体通常不是服务器想要的?
答案 5 :(得分:1)
使用提到here的CustomJsonObjectRequest助手类。
并按此实施 -
CustomJsonObjectRequest request = new CustomJsonObjectRequest(Method.POST, URL, null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Toast.makeText(getActivity(), response.toString(), Toast.LENGTH_SHORT).show();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getActivity(), "Error.", Toast.LENGTH_SHORT).show();
}
}) {
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String, String> params = new HashMap<String, String>();
params.put("id", id);
params.put("password", password);
return params;
}
};
VolleySingleton.getInstance().addToRequestQueue(request);
答案 6 :(得分:1)
可以帮助别人并节省一些时间思考。 我遇到了类似的问题,服务器代码正在寻找Content-Type标头。它是这样做的:
'application/json; charset?utf-8'
但是Volley正在发送这样的标题:
if( strpos($request->headers->content_type, 'application/json') ){ //Parse JSON...
将服务器代码更改为此可以解决问题:
{{1}}
答案 7 :(得分:1)
我有类似的问题。但我发现问题不在服务器端,但问题在于缓存。您必须清除RequestQueue缓存。
RequestQueue requestQueue1 = Volley.newRequestQueue(context);
requestQueue1.getCache().clear();
答案 8 :(得分:1)
你可以这样做:
CustomRequest request = new CustomRequest(Request.Method.POST, url, null, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
// Toast.makeText(SignActivity.this, response.toString(), Toast.LENGTH_SHORT).show();
Log.d("response",""+response.toString());
String status = response.optString("StatusMessage");
String actionstatus = response.optString("ActionStatus");
Toast.makeText(SignActivity.this, ""+status, Toast.LENGTH_SHORT).show();
if(actionstatus.equals("Success"))
{
Intent i = new Intent(SignActivity.this, LoginActivity.class);
startActivity(i);
finish();
}
dismissProgress();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(SignActivity.this, "Error."+error.toString(), Toast.LENGTH_SHORT).show();
Log.d("response",""+error.toString());
dismissProgress();
}
}) {
@Override
public String getBodyContentType() {
return "application/x-www-form-urlencoded; charset=UTF-8";
}
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String, String> params = new HashMap<String, String>();
params.put("Email", emailval);
params.put("PassWord", passwordval);
params.put("FirstName", firstnameval);
params.put("LastName", lastnameval);
params.put("Phone", phoneval);
return params;
}
};
AppSingleton.getInstance(SignActivity.this.getApplicationContext()).addToRequestQueue(request, REQUEST_TAG);
根据CustomRequest下面的链接 Volley JsonObjectRequest Post request not working
答案 9 :(得分:0)
它对我有用,可以尝试用Volley来调用Json类型的请求和响应。
public void callLogin(String sMethodToCall, String sUserId, String sPass) {
RequestQueue requestQueue = Volley.newRequestQueue(getApplicationContext());
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(
Request.Method.POST, ConstantValues.ROOT_URL_LOCAL + sMethodToCall.toString().trim(), addJsonParams(sUserId, sPass),
// JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, url, object,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d("onResponse", response.toString());
Toast.makeText(VolleyMethods.this, response.toString(), Toast.LENGTH_LONG).show(); // Test
parseResponse(response);
// msgResponse.setText(response.toString());
// hideProgressDialog();
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
VolleyLog.d("onErrorResponse", "Error: " + error.getMessage());
Toast.makeText(VolleyMethods.this, error.toString(), Toast.LENGTH_LONG).show();
// hideProgressDialog();
}
}) {
/**
* Passing some request headers
*/
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
HashMap<String, String> headers = new HashMap<String, String>();
headers.put("Content-Type", "application/json; charset=utf-8");
return headers;
}
};
requestQueue.add(jsonObjectRequest);
}
public JSONObject addJsonParams(String sUserId, String sPass) {
JSONObject jsonobject = new JSONObject();
try {
// {"id":,"login":"secretary","password":"password"}
///***//
Log.d("addJsonParams", "addJsonParams");
// JSONObject jsonobject = new JSONObject();
// JSONObject jsonobject_one = new JSONObject();
//
// jsonobject_one.put("type", "event_and_offer");
// jsonobject_one.put("devicetype", "I");
//
// JSONObject jsonobject_TWO = new JSONObject();
// jsonobject_TWO.put("value", "event");
// JSONObject jsonobject = new JSONObject();
//
// jsonobject.put("requestinfo", jsonobject_TWO);
// jsonobject.put("request", jsonobject_one);
jsonobject.put("id", "");
jsonobject.put("login", sUserId); // sUserId
jsonobject.put("password", sPass); // sPass
// js.put("data", jsonobject.toString());
} catch (JSONException e) {
e.printStackTrace();
}
return jsonobject;
}
public void parseResponse(JSONObject response) {
Boolean bIsSuccess = false; // Write according to your logic this is demo.
try {
JSONObject jObject = new JSONObject(String.valueOf(response));
bIsSuccess = jObject.getBoolean("success");
} catch (JSONException e) {
e.printStackTrace();
Toast.makeText(VolleyMethods.this, "" + e.toString(), Toast.LENGTH_LONG).show(); // Test
}
}
答案 10 :(得分:0)
希望参加派对还不算太晚: 问题出在服务器端。如果您使用 PHP,请在 php api 文件的顶部添加以下几行(在包含之后)
$inputJSON = file_get_contents('php://input');
if(get_magic_quotes_gpc())
{
$param = stripslashes($inputJSON);
}
else
{
$param = $inputJSON;
}
$input = json_decode($param, TRUE);
然后检索您的值
$tag= $input['tag'];
答案 11 :(得分:-1)
“......最初,它对我有用 ....然后它突然停止工作并且我没有对代码进行任何更改“
如果您没有对以前正在运行的代码进行任何更改,那么我建议您检查其他参数,例如 URL ,因为如果您使用自己的计算机作为服务器,IP地址可能会更改!