Top "Restful-url" questions

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

Hyphen, underscore, or camelCase as word delimiter in URIs?

I'm designing an HTTP-based API for an intranet app. I realize it's a pretty small concern in the grand scheme …

api url rest uri restful-url
Passing array in GET for a REST call

I have a url to fetch appointments for a user like this: /user/:userId/appointments How should the url look …

rest restful-url restful-architecture
How to access the services from RESTful API in my angularjs page?

I am very new to angularJS. I am searching for accessing services from RESTful API, but I didn't get any …

rest angularjs restful-url angularjs-service
What’s the best RESTful method to return total number of items in an object?

I’m developing a REST API service for a large social networking website I’m involved in. So far, it’…

rest restful-url
PUT and POST getting 405 Method Not Allowed Error for Restful Web Services

I am trying to set up a simple Restful Web-Service which returns either JSON or XML according to the Accept …

java web-services rest spring-mvc restful-url
When do I use path params vs. query params in a RESTful API?

I want to make my RESTful API very predictable. What is the best practice for deciding when to make a …

rest spring-mvc restful-url restful-architecture api-design
How to create REST URLs without verbs?

I'm struggling to determine how to design restful URLs. I'm all for the restful approach of using URLs with nouns …

rest restful-url
What is the difference between @PathParam and @PathVariable

To my knowledge both serves the same purpose. Except the fact that @PathVariable is from Spring MVC and @PathParam is …

spring-mvc jax-rs restful-url path-parameter
RESTfully design /login or /register resources?

I was designing a web app and then stopped to think about how my api should be designed as a …

web-services api rest http restful-url
RESTful - What should a DELETE response body contain

Let's say I have an API where you can get users: GET /RESTAPI/user/ And you can delete users by: …

rest http restful-url