2015-11-20 3 views
0

В моем приложении я должен отправить запрос POST с помощью параметра JSON req, я попытался создать запрос с Postman Rest Client и работает нормально, но не работает с кодом ниже.Volley Request with Raw data

В параметре Postman req отправлен как необработанные данные, но я не уверен, как отправить его с запросом Volley.

public Request getHTTPPostReqResponse(String URL, Class mClass, final Map<String, String> params, final String contentType, final String body) { 
    mResponseListener.requestStarted(); 

    Request mRequest = new GsonRequest(Request.Method.POST, URL, mClass, new Response.Listener<Object>() { 

     @Override 
     public void onResponse(Object response) { 
      mResponseListener.requestCompleted(response); 
     } 
    }, new Response.ErrorListener() { 

     @Override 
     public void onErrorResponse(VolleyError error) { 
      mResponseListener.requestEndedWithError(error); 
     } 
    }) { 
     @Override 
     protected Map<String, String> getParams() { 
      return params; 
     } 

     @Override 
     public byte[] getBody() throws AuthFailureError { 
      if (TextUtils.isEmpty(body)){ 
       return super.getBody(); 
      }else { 
       return body.getBytes(); 
      } 
     } 

     @Override 
     public String getBodyContentType() { 
      return contentType; 
     } 

     @Override 
     public Map<String, String> getHeaders() throws AuthFailureError { 
      Map<String, String> params = new HashMap<>(); 
      params.put("Content-Type", contentType); 
      return params; 
     } 
    }; 

    mRequest.setRetryPolicy(new DefaultRetryPolicy(
      MY_SOCKET_TIMEOUT_MS, 
      DefaultRetryPolicy.DEFAULT_MAX_RETRIES, 
      DefaultRetryPolicy.DEFAULT_BACKOFF_MULT)); 

    return mRequest; 
} 

Запрос параметров:

{ 
    "nodeId": null, 
    "userId": null, 
    "mobileNumber": "993000008", 
    "emailId": "[email protected]", 
    "userProfile": null, 
    "region": null, 
    "countryCode": "91", 
    "password": "[email protected]", 
    "places": [], 
    "trustedNetwork": [], 
    "profilePic": null, 
    "fullName": null, 
    "longitude": 0.0, 
    "latitude": 0.0 
} 
+0

Можете ли вы описать проблему немного более точно? Можете ли вы отправить запрос, который вы делаете с помощью Postman? –

ответ

2

надеюсь, что это не слишком поздно.

Вы пробовали другой тип запроса, например String или JsonObject? И другой синтаксис для параметров?

например.

 Map<String, Object> jsonParams = new ArrayMap<>(); 
    jsonParams.put("nodeId", null); 
    jsonParams.put("userId", null); 
    jsonParams.put("mobileNumber", "[email protected]"); 
    jsonParams.put("userProfile", null); 
    jsonParams.put("region", null); 
    jsonParams.put("countryCode", 91); 
    jsonParams.put("password", [email protected]); 
    jsonParams.put("places", new ArrayList()); 
    jsonParams.put("trustedNetwork", new ArrayList()); 
    jsonParams.put("profilePic", null); 
    jsonParams.put("fullName", null); 
    jsonParams.put("longitude", 0.0); 
    jsonParams.put("latitude", 0.0); 

    JsonObjectRequest request = new JsonObjectRequest(Request.Method.POST, url, new JSONObject(jsonParams), 
      new Response.Listener<JSONObject>() 
      { 
       @Override 
       public void onResponse(JSONObject response) 
       { 
        mResponseListener.requestCompleted(response); 
       } 
      }, 
      new Response.ErrorListener() 
      { 
       @Override 
       public void onErrorResponse(VolleyError error) 
       { 
        if (null != error.networkResponse) 
        { 
        mResponseListener.requestEndedWithError(error); 
        } 
       } 
      }); 

Кроме того, взгляните на this SO question. Надеюсь, что это поможет.

0

Это рабочий код, вы можете попробовать. мы можем использовать JsonObjectRequest для необработанных данных. Здесь я только показывает, как сделать requestObject, который добавляется в очередь

String url = MConstant.API_END+"/userLogin"; 
    Map<String, String> params = new HashMap<String, String>(); 
    params.put("email",mEmailView.getText().toString()); 
    params.put("password",mPasswordView.getText().toString()); 
    params.put("api",MConstant.API); 
    JSONObject objRegData = new JSONObject(params); 
    JsonObjectRequest jsObjRequest = new JsonObjectRequest 
      (Request.Method.POST, url, objRegData, new Response.Listener<JSONObject>() { 
       @Override 
       public void onResponse(JSONObject response) { 
        try { 

         // handle response data 
        } catch (JSONException e) { 
         e.printStackTrace(); 
         //pDialog.show(); 
        } 

       } 
      }, new Response.ErrorListener() { 


       @Override 
       public void onErrorResponse(VolleyError error) { 
        pDialog.hide(); 
       } 
      }) 
    { 
     @Override 
     public Map<String, String> getHeaders() throws AuthFailureError { 
      Map<String, String> params = new HashMap<String, String>(); 
      params.put("Content-Type", "application/json"); 
      return params; 
     } 
    }; 

в стороне сервера PHP мы можем получить данные с помощью

$json = file_get_contents('php://input'); 
$myPostData = json_decode($json, true);