About 119,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 …

  2. 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 …

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

  4. What is difference between REST and API? - Stack Overflow

    May 9, 2021 · REST is a type of API. Not all APIs are REST, but all REST services are APIs. API is a very broad term. Generally it's how one piece of code talks to another. In web …

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

  6. What exactly is a Rest API - Stack Overflow

    Dec 29, 2016 · What is Rest API, why is it used, and how can I go about creating one and learning more about it? All functions should be of either GET/POST/DELETE/PUT form?

  7. What does Representational State mean in REST? - Stack Overflow

    May 2, 2012 · A REST API should spend almost all of its descriptive effort in defining the media type (s) used for representing resources and driving application state, or in defining extended …

  8. What does stateless RESTful API actually mean? - Stack Overflow

    Jan 4, 2020 · 4 What does stateless RESTful API actually mean? Stateless is an important REST constraint, and means something precise: each request from client to server must contain all …

  9. http - REST API error code 500 handling - Stack Overflow

    We are building a new REST API. I was arguing that error code 500 (Internal Server Error) should never be returned. Now, of course if you know the client's params are ...

  10. In REST is POST or PUT best suited for upsert operation?

    Aug 27, 2013 · To be ideally RESTful, however, a GET to the same URL should also allow you to download the resource. I have another operation that removes all existing keys and adds the …