Если вы хотите написать javascript и html / css UI для запуска в браузере, вы можете использовать jQuery и его ajax методы.
$(document).ready(function() {
$.get("your/restful/url/here", function(data) { // do stuff with data here});
$.post("your/restful/url/here", function(data) { // do stuff with data here});
});
Вы могли бы расширить вышеупомянутое еще как это:
$(document).ready(function() {
$("post").click(function() {
$.post("/restful/?parm1=" + $("#input1").val() + "&parm2=" + $("#input2").val() , function(data) { // do stuff with data here});
});
});
<input type="text" id="input1" />
<input type="text" id="input2" />
<input type="submit" id="post">Post</input>
Кроме того, как указано в комментариях, вы также можете просто использовать свой браузер, чтобы открыть свои RESTful URL.