アンドロイドバレーボールPOSTメソッドエラーBasicNetwork.performRequest:予期しない応答コード503
BasicNetwork.performRequest:予期しない応答コード503
POSTリクエストをサーバに送信します。
Map<String, String> jsonParams = new HashMap<String, String>();
jsonParams.put("LoginForm[email]",email);
jsonParams.put("LoginForm[password]",password);
jsonParams.put("TOKEN", token);
JsonObjectRequest postRequest = new JsonObjectRequest(Request.Method.POST, URL,
new JSONObject(jsonParams),
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
// on Response
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
// on Error Response
}
}) {
@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");
headers.put("User-agent", System.getProperty("http.agent"));
return headers;
}
};
RequestQueue requestQueue = Volley.newRequestQueue(getActivity());
requestQueue.add(postRequest);
ご質問はありますか? – Nfear
郵便配達員経由で送信するリクエストを貼り付けることができます – djodjo