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

    Mar 22, 2009 · RESTful (Representational state transfer) API programming is writing web applications in any programming language by following 5 basic software architectural style principles:

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

    Oct 14, 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

    310 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 me, this adds unnecessary ambiguity. HTTP 404 is …

  5. 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.

  6. rest - How to design RESTful search/filtering? - Stack Overflow

    Apr 28, 2017 · I'm currently designing and implementing a RESTful API in PHP. However, I have been unsuccessful implementing my initial design. GET /users # list of users GET /user/1 # get user with id 1 POST /u...

  7. RESTful - What should a DELETE response body contain

    Sep 22, 2014 · 77 What is the RESTful convention on what the DELETE 's response body should contain? REST is an architectural style defined by Fielding in the chapter 5 of his dissertation and it describes a set of contraints for applications built with this architecture.

  8. RESTful way to create multiple items in one request

    Dec 28, 2016 · I think a Batch API (from Google, Facebook, etc - @PuneetArora) is more useful when grouping several unrelated requests together. Creating a request that creates one item, and then grouping all those requests together to send a collection of items is "insanity" (Einstein). Just create a request that passes a collection of items.

  9. '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 the object that was created. There is a really excellent reference for API design, here: Best Practices for Designing a Pragmatic RESTful API It includes an answer to your …

  10. How do I make calls to a REST API using C#? - Stack Overflow

    Mar 8, 2012 · 551 The ASP.NET Web API has replaced the WCF Web API previously mentioned. I thought I'd post an updated answer since most of these responses are from early 2012, and this thread is one of the top results when doing a Google search for "call restful service C#".