簡體   English   中英

如何修復“Volley:[15771] BasicNetwork.performRequest:Android 中的意外響應代碼 404?

[英]How to fix "Volley: [15771] BasicNetwork.performRequest: Unexpected response code 404 in android?

API 是在 Wordpress 中使用 POST 方法開發的。 API 在 POSTMAN 和 iOS(swift) 中運行良好。 我在 POSTMAN 中收到回復,我的同事 iOS 開發人員也收到回復。

但在 Android 中,我在 Android Studio 中收到404 錯誤 我正在嘗試使用 AsyncTask 解決不同的 Volley 請求,例如 StringRequest、JSONObjectRequest 和 HttpURLConnection。 但只收到 404 錯誤。 誰能告訴我確切的問題是什么?

下面是我的代碼。

private void RegisterUser(){
        final ProgressDialog progressDialog = new ProgressDialog(RegistrationActivity.this);
        progressDialog.setCancelable(false);
        progressDialog.setMessage("Please wait...");
        progressDialog.show();

        StringRequest postrequest = new StringRequest(Request.Method.POST, Urls.REGISTER, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                try {
                    progressDialog.dismiss();
                    Log.e("res","==> "+response);
                }
                catch (Exception e){e.printStackTrace();}
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {progressDialog.dismiss();error.getLocalizedMessage();}
        }) {
            @Override
            protected Map<String, String> getParams() {
                Map<String, String> params = new HashMap<String, String>();
                params.put("username", "khushbu");
                params.put("email", "kh@test.com");
                params.put("user_pass", "test@123");
                params.put("display_name", "khushbu");
                params.put("company_name", "");
                params.put("nature_of_business", "");
                params.put("country", "");
                params.put("nonce", "12e099a946");
                params.put("notify", "both");
                params.put("insecure", "cool");

                Log.e("params","==> " + params);
                return params;
            }
        };
        FlawlessApplication.getInstance().addToRequestQueue(postrequest);
    }

我也嘗試添加標頭但無法獲得任何解決方案。

@Override
            public Map<String, String> getHeaders() throws AuthFailureError {
                Map<String, String>  params = new HashMap<String, String>();
                params.put("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
                params.put("cache-control", "no-cache");

                return params;
            }

先感謝您。

final ProgressDialog progressDialog;
progressDialog = ProgressDialog.show(mContext, "", "Loading..");
progressDialog.setCancelable(false);
progressDialog.show();

RequestQueue requestQueue = Volley.newRequestQueue(mContext);
HashMap<String, String> params = new HashMap<>();
params.put("username", "khushbu");
params.put("email", "kh@test.com");
params.put("user_pass", "test@123");
params.put("display_name", "khushbu");
params.put("company_name", "");
params.put("nature_of_business", "");
params.put("country", "");
params.put("nonce", "12e099a946");
params.put("notify", "both");
params.put("insecure", "cool");
Log.e("params","==> " + params);

JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(
    Request.Method.POST,
    Urls.REGISTER,
    new JSONObject(params),
    new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {
            try {
                progressDialog.dismiss();
            } catch (Exception e) {
                e.printStackTrace();
            }
            try {
                Log.e("res","==> "+response);
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    },
    new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            // Do something when error occurred
            try {
                progressDialog.dismiss();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
) {
    @Override
    public Map<String, String> getHeaders() throws AuthFailureError {
        HashMap<String, String> headerParams = new HashMap<>();
        //add header params if having
        headerParams.put("KEY", "value");
        return headerParams;
    }
};
// Add JsonObjectRequest to the RequestQueue
requestQueue.add(jsonObjectRequest);

就我而言。 我在我的 API 中使用了 http,所以在更改為 https 后它對我有用。 在郵遞員中,無論是 http 還是 https,它的工作原理都是一樣的。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM