how to send authorization header in android using volley library

落爺英雄遲暮 提交于 2019-12-28 13:37:53

问题


how to send Authorization header using volley library in android for GET method please help me thank you

JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url,
            null, new Response.Listener<JSONObject>() {

        @Override
        public void onResponse(JSONObject response) {
            Log.d("Response", response.toString());
            pd.dismiss();

            Toast.makeText(MainActivity.this, "" + response.toString(), Toast.LENGTH_SHORT).show();
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            VolleyLog.d("Error", "Error: " + error.getMessage());
            Toast.makeText(MainActivity.this, "" + error.getMessage(), Toast.LENGTH_SHORT).show();
            pd.dismiss();

        }
    }) {
        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("Authorization", "2e96e0a4ff05ba86dc8f778ac49a8dc0");
            return headers;
        }
    };

this is my code please help me Thank you in advance


回答1:


StringRequest request = new StringRequest(Request.Method.POST, YourUrl, new Response.Listener<String>() {
    @Override
    public void onResponse(String response) {
        if (!response.equals(null)) {
            Log.e("Your Array Response", response);                    
        } else {
            Log.e("Your Array Response", "Data Null");
        }
    }

}, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
        Log.e("error is ", "" + error);
    }
}) {    

 //This is for Headers If You Needed
    @Override
    public Map<String, String> getHeaders() throws AuthFailureError {
        Map<String, String> params = new HashMap<String, String>();
        params.put("Content-Type", "application/json; charset=UTF-8");
        params.put("token", ACCESS_TOKEN);
        return params;
    }

 //Pass Your Parameters here
    @Override
    protected Map<String, String> getParams() {
        Map<String, String> params = new HashMap<String, String>();
        params.put("User", UserName);
        params.put("Pass", PassWord);
        return params;
    }
};
RequestQueue queue = Volley.newRequestQueue(getApplicationContext());
queue.add(request);



回答2:


Try following code:

@Override
    public Map<String, String> getHeaders() throws AuthFailureError {
        String credentials = "username" + ":" + "password";
        String base64EncodedCredentials = Base64.encodeToString(credentials.getBytes(), Base64.NO_WRAP);
        HashMap<String, String> headers = new HashMap<>();
        headers.put("Authorization", "Basic " + base64EncodedCredentials);
        return headers;
    }



回答3:


1.Try using getBodyContentType()::

     JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url,
        null, new Response.Listener<JSONObject>() {

    @Override
    public void onResponse(JSONObject response) {
        Log.d("Response", response.toString());
        pd.dismiss();

        Toast.makeText(MainActivity.this, "" + response.toString(), Toast.LENGTH_SHORT).show();
    }
}, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
        VolleyLog.d("Error", "Error: " + error.getMessage());
        Toast.makeText(MainActivity.this, "" + error.getMessage(), Toast.LENGTH_SHORT).show();
        pd.dismiss();

    }
}) 
{
     @Override
        public String getBodyContentType() {
            return "application/json; charset=utf-8";
        }

    @Override
    public Map<String, String> getHeaders() throws AuthFailureError {
        HashMap<String, String> headers = new HashMap<String, String>();
        headers.put("Authorization", "2e96e0a4ff05ba86dc8f778ac49a8dc0");
        return headers;
    }
};



回答4:


If an API needs a Authorization Header then Using Volley we need to do this :

JsonObjectRequest jsonObejct = new JsonObjectRequest(Request.Method.GET, URL, null, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {

            Log.wtf("The Response ",response.toString());
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {

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



回答5:


try this code

 @Override
public Map<String, String> getHeaders() throws AuthFailureError {
    String credentials = preferenceHelper.getEmail() + ":" + preferenceHelper.getPassword();
    String base64EncodedCredentials = Base64.encodeToString(credentials.getBytes(), Base64.DEFAULT);
    HashMap<String, String> headers = new HashMap<>();
    headers.put("Authorization", "Basic " + base64EncodedCredentials);
    return headers;
}



回答6:


This can be simply achieved by using the getHeaders() thus;

@Override
            public Map<String, String> getHeaders() throws AuthFailureError {
                Map<String, String> headerMap = new HashMap<String, String>();
                headerMap.put("Content-Type", "application/json");
                headerMap.put("Authorization", "Bearer " + ACCESS_TOKEN);
                return headerMap;
            }


来源:https://stackoverflow.com/questions/44000212/how-to-send-authorization-header-in-android-using-volley-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!