48
47

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Volleyでhttp headerを追加設定する

Posted at

VolleyでBASIC認証の先のページにアクセスする必要があったのだけども、
HttpURLConnection.setRequestProperty()みたいなものが見つからずギギギとなった。

その後 Volleyで設定する方法を @h_narazaki 氏に教えてもらったのでメモっておきます。

:jsonObjReq.java
JsonObjectRequest json = new JsonObjectRequest(Method.GET,"http://your.domain.here/",null,
	new Listener<JSONObject>(){
		public void onResponse(JSONObject result) {
		}
	}, new Response.ErrorListener() {
		public void onErrorResponse(VolleyError error) {
		}
	}){
	@Override
		public Map<String, String> getHeaders() throws AuthFailureError {
		Map<String, String> headers = super.getHeaders();
		// Add BASIC AUTH HEADER
		Map<String, String> newHeaders = new HashMap<String, String>();
		newHeaders.putAll(headers);
		newHeaders.put("Authorization", "Basic HogeHogeFugeo======");
		return newHeaders;
	};
};
48
47
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
48
47

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?