Top "Restful-url" questions

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

How to structure REST resource hierarchy?

I'm new to server side web development and recently I've been reading a lot about implementing RESTful API's. One aspect …

api rest uri restful-url restful-architecture
HTTP POST response Location header when creating multiple resources

The HTTP/1.1 standard states that if a POST operation results in the creation of a resource, then the response should …

rest http http-status-codes restful-url restful-architecture
Java - Better way to parse a RESTful resource URL

I'm new to developing web services in Java (previously I've done them in PHP and Ruby). I'm writing a resource …

java rest servlets restful-url
Get PUT params with Slim PHP

I searched, but I didn't find an answer. I have a RESTful API to manage a basic CRUD. I'm trying …

php rest put restful-url slim
How to return an Image to browser in rest API in JAVA?

I want to an image while I hit an API like localhost:8080:/getImage/app/path={imagePath} While I hit this …

spring restful-url java
How to loop through paginated API using python

I need to retrieve the 500 most popular films from a REST API, but the results are limited to 20 per page …

python restful-url
SpringMVC url rewrite with tuckey UrlRewriteFilter

How can I rewrite url in SpringMVC with tuckey's UrlRewriteFilter like this: From http://localhost:8080/demo/api.do?method=getUser&…

java spring-mvc url-rewriting restful-url tuckey-urlrewrite-filter
Log restful endpoints on container startup in a Spring application

I've a Spring application that expose restful endpoints through @RequestMapping annotation in Controller classes. I wish that were logged into …

java spring rest spring-mvc restful-url
RESTful POSTS, do you POST objects to the singular or plural Uri?

Which one of these URIs would be more 'fit' for receiving POSTs (adding product(s))? Are there any best practices …

rest restful-url
Do I violate RESTfulness when using POST as UPDATE OR CREATE

Given the requirement other departments have for our REST API they would like to use POST not just for CREATE …

rest http restful-url restful-architecture