I want to send a request to database using Volly in android. This is my request
private class MyAsyncTask extends AsyncTask<String, Integer, Double>{
@Override
protected Double doInBackground(String... params) {
// TODO Auto-generated method stub
postData(params[0]);
return null;
}
protected void onPostExecute(Double result){
pb.setVisibility(View.GONE);
Toast.makeText(getApplicationContext(), "Code Sent", Toast.LENGTH_LONG).show();
}
protected void onProgressUpdate(Integer... progress){
pb.setProgress(progress[0]);
}
public void postData(String valueIWantToSend) {
try {
RequestQueue requestQueue = Volley.newRequestQueue(mContexy);
String URL = Config.Get_FeedBackURL;
JSONObject jsonBody = new JSONObject();
jsonBody.put("email", SharedPrefs.getString(mContexy, SharedPrefs.KEY_email," "));
jsonBody.put("ID", "ir.gfpishro.mobile");
jsonBody.put("Author", SharedPrefs.getString(mContexy, SharedPrefs.KEY_name," "));
jsonBody.put("comment", valueIWantToSend);
final String mRequestBody = jsonBody.toString();
StringRequest stringRequest = new StringRequest(Request.Method.POST, URL, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.i("VOLLEY", response);
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.e("VOLLEY", error.toString());
}
}) {
@Override
public String getBodyContentType() {
return "application/json; charset=utf-8";
}
@Override
public byte[] getBody() throws AuthFailureError {
try {
return mRequestBody == null ? null : mRequestBody.getBytes("utf-8");
} catch (UnsupportedEncodingException uee) {
VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", mRequestBody, "utf-8");
return null;
}
}
@Override
protected Response<String> parseNetworkResponse(NetworkResponse response) {
String responseString = "";
if (response != null) {
responseString = String.valueOf(response.statusCode);
responseString = String.valueOf(response.data);
// can get more details such as response.headers
}
return Response.success(responseString, HttpHeaderParser.parseCacheHeaders(response));
}
};
requestQueue.add(stringRequest);
} catch (JSONException e) {
e.printStackTrace();
}
}
}
It sends request into php webservice but I can not handle it,I used this code in my php file
$json = file_get_contents('php://input');
$objd = json_decode($_POST);
echo $objd["ID"];
//"ID", "ir.gfpishro.mobile"
if ($objd["ID"]== "ir.gfpishro.mobile") {
echo $obj["email"];
echo $obj["Author"];
echo $obj["comment"];
//fetch product id from ibecon
$stmt = $this->db->prepare("INSERT INTO `userComments`(`useremail`, `username`, `text`) VALUES ('as','dd','dddd')");
$stmt->execute(array($obj["email"],$obj["Author"],$obj["comment"]));
sendResponse(200, json_encode($obj));
return true;
}else if(isset($_GET["companyid"])){
sendResponse(203, json_encode($result));
return false;
}
}
Php return PHP Warning: json_decode() expects parameter 1 to be string, array given in
and then return status code of 200.I want to know How can I handle posted data in php file.
Thanks