-2
// URL
String CategoryUrl = "http://lazurd.com/shop/api/rest/custom/categories/";BasicNetwork.performRequest:ボレーの予期しない応答コード500
StringRequest request = new StringRequest(Request.Method.GET,CategoryUrl,new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.d("CODDE",response);
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError volleyError) {
Toast.makeText(MainActivity.this,"ERROR",Toast.LENGTH_LONG).show();
}
});
RequestQueue queue = Volley.newRequestQueue(this);
queue.add(request);
BasicNetwork.performRequest:予期しない応答コード500と同じhttp://lazurd.com/shop/api/rest/custom/categories/
did't作業用。 –