About 6,060,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. 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.

  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. When do I use path parameters vs. query parameters in a RESTful API ...

    I want to make my RESTful API very predictable. What is the best practice for deciding when to make a segmentation of data using the URI rather than by using query parameters? It makes sense to me ...

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

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

  7. For Restful API, can GET method use json data? [duplicate]

    Apr 11, 2015 · I don't want to see so long parameters string in the URI. So, can GET method use json data? In my situation, I need to filter the result given kind of parameters. If there are a lot of …

  8. Making a request to a RESTful API using Python - Stack Overflow

    I have a RESTful API that I have exposed using an implementation of Elasticsearch on an EC2 instance to index a corpus of content. I can query the search by running the following from my terminal (...

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

  10. Restful API - handling large amounts of data - Stack Overflow

    Sep 16, 2014 · I have written my own Restful API and am wondering about the best way to deal with large amounts of records returned from the API. For example, if I use GET method to …