Volley – POST/GET parameters
For the GET parameters there are two alternatives: First: As suggested in a comment bellow the question you can just use String and replace the parameters placeholders with their values like: String uri = String.format(“http://somesite.com/some_endpoint.php?param1=%1$s¶m2=%2$s”, num1, num2); StringRequest myReq = new StringRequest(Method.GET, uri, createMyReqSuccessListener(), createMyReqErrorListener()); queue.add(myReq); where num1 and num2 are String variables that contain … Read more