Top "Restful-url" questions

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

Restful URLs with data in query string or request body?

What's the rule of thumb for passing data in a REST URL in the query string vs. the body of …

rest restful-url
Do REST API URLs have to look like this?

Is it true that to implement a RESTful API, one has to implement a URL structure that looks like this …

api rest restful-url
Alternative to <a href="#"> when the anchor tag only triggers a jQuery action without redirecting the user?

I have numerous anchor tags on my page that only trigger jQuery actions on the same page. The don't redirect …

javascript jquery html anchor restful-url
Spring MVC Controller: Redirect without parameters being added to my url

I'm trying to redirect without parameters being added to my URL. @Controller ... public class SomeController { ... @RequestMapping("save/") public String doSave(...) { ... …

java spring-mvc restful-url
How to add method description in Swagger UI in WebAPI Application

I am using Swagger as my API tooling framework and it is working out great so far. I just came …

c# asp.net-core-webapi swagger-ui restful-url swashbuckle
How do I get started with swagger-ui

What is swagger-ui and what is the use of it? Are there any good resources to get started with swagger-ui? …

restful-url swagger swagger-ui swagger-node-express
the request sent by the client was syntactically incorrect when sending post requests

The method in myController looks like this @RequestMapping(value="/{processId}/dependents", method=RequestMethod.POST,consumes="application/json") @ResponseBody public Dependents …

json rest spring-mvc restful-url
AngularJS Controller Error - : $http.get is not a function in controller section

var hsbc = angular.module('hsbc',['ngResource','ngRoute']); hsbc.config(['$routeProvider','$locationProvider', function ($routeProvider, $locationProvider){ //console.log('config part …

javascript angularjs restful-url ngresource
Confusion Between Noun vs. Verb in Rest URLs

I have studied over the internet about restful APIs that it focuses on nouns not verbs in the url pattern, …

rest restful-url
How to pass comma separated parameters in a url for the get method of rest service

I have a webservice like @GET @Produces("application/json") @Path("{parameter1}/july/{param2},{param3},{param4}/month") public Month getResult(@PathParam("…

java web-services jax-rs restful-url