About 13,300,000 results
Open links in new tab
  1. rest - What exactly is RESTful programming? - Stack Overflow

    Mar 22, 2009 · To understand Restful programming or Restful API. First, you have to understand what API is, on a very high-level API stands for Application Programming Interface, it's basically a piece of …

  2. What's the difference between REST & RESTful - Stack Overflow

    Oct 15, 2009 · What's the difference between a REST system and a system that is RESTful? From a few things I've read most so called REST services are actually RESTful services.

  3. api - O que é REST e RESTful? - Stack Overflow em Português

    Jan 4, 2015 · Sempre ouço falar de REST e RESTful, mas não sei diferenciar um do outro nem para que servem. Me pareceu algo com padrão de arquitetura de aplicação estilo Common.js.

  4. REST API 404: Bad URI, or Missing Resource? - Stack Overflow

    314 I'm building a REST API, but I've encountered a problem. It seems that accepted practice in designing a REST API is that if the resource requested doesn't exist, a 404 is returned. However, to …

  5. ¿Cual es la diferencia entre REST y RESTful?

    Jan 14, 2016 · REST (Representational State Transfer) es una arquitectura que se ejecuta sobre HTTP. RESTful hace referencia a un servicio web que implementa la arquitectura REST.

  6. REST API Best practice: How to accept list of ... - Stack Overflow

    Apr 9, 2010 · We are launching a new REST API and I wanted some community input on best practices around how we should have input parameters formatted: Right now, our API is very JSON-centric …

  7. How to design a REST API to request only specific fields from a ...

    I have a RESTful API within a web-service with resources such as users, posts and so on. When I make a request for a list of posts (GET /posts), I want to retrieve an array of posts only with limited data for …

  8. 'Best' practice for restful POST response - Stack Overflow

    Oct 5, 2013 · Returning the new object fits with the REST principle of "Uniform Interface - Manipulation of resources through representations." The complete object is the representation of the new state of …

  9. Recommended date format for REST GET API - Stack Overflow

    RFC6690 - Constrained RESTful Environments (CoRE) Link Format Does not explicitly state what Date format should be however in section 2. Link Format it points to RFC 3986.

  10. How to understand "RESTful API is stateless"? - Stack Overflow

    Dec 7, 2015 · 2 RESTful API is stateless because the server doesn't need to know the client state to process the request. Each request from the client comes with all info required (state transfer) to …