Hello as I understand to send a url to a web service parameters are used to use them in the query to the database. But in the case of wanting to bring everything from a table and not send parameters how would the JsonObjectRequest be used? Thank you.
String url = "http://192.168.0.69/webservice/comercios.php";
jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, url,
null,this,this);
request.add(jsonObjectRequest);
That's where it says "POST" what would I have to say if we did not send parameters? Thanks