0
我正在使用Volley
的JsonArrayRequest
從我的網頁獲取JSON數據。 現在我已將基本 HTTP身份驗證添加到我的網頁。如何使用 HTTP驗證碼和Volley
? 如果我在網頁中添加Digest HTTP Authentication,我該如何在android中處理它?如何使用HTTP Auth與Volley
我JsonArrayRequest
代碼:
JsonArrayRequest loadMoreRequest = new JsonArrayRequest(url,new Response.Listener<JSONArray>()
{
@Override
public void onResponse(JSONArray response)
{
try
{
for (int i = 0; i < response.length(); i++)
{
JSONObject obj = response.getJSONObject(i);
//Some Logic
}
}
catch (JSONException e)
{
e.printStackTrace();
}
}
},
new Response.ErrorListener()
{
@Override
public void onErrorResponse(VolleyError error)
{
Toast.makeText(getActivity(), error.toString(),Toast.LENGTH_LONG).show();
}
});
requestQueue.add(loadMoreRequest);
你想找到這個? http://stackoverflow.com/questions/16817980/how-does-one-use-basic-authentication-with-volley-on-android – xxxzhi