Volley JsonObjectRequest send headers in GET Request
问题 I am trying to send some authentication headers from GET request and I tried using Volley JsonObjectRequest call : Map<String,String> params=new HashMap<String,String>(); params.put("token","fghjbvjhnjjk"); activity.showDialog(); JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET,url, new JSONObject(params), new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { Log.d(tag, response.toString()); activity.hideDialog(); try { activity