There are 2 variables. How to make a request like site.com/String1/string2 ?
StringRequest strReq = new StringRequest(Method.GET, site.com/, new Response.Listener<String>() { I tried to add a slash to the first variable, but it does not give anything.
@Override protected Map<String, String> getParams() { Map<String, String> params = new HashMap<String, String>(); params.put("String1", String1+"/"); params.put("String2", String2); return params; }