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

    Mar 22, 2009 · REST is the underlying architectural principle of the web. The amazing thing about the web is the fact that clients (browsers) and servers can interact in complex ways without the …

  2. REST - What exactly is meant by Uniform Interface?

    Wikipedia has: Uniform interface The uniform interface constraint is fundamental to the design of any REST service.[14] The uniform interface simplifies and decouples the architecture, which …

  3. rest - 400 BAD request HTTP error code meaning? - Stack Overflow

    Oct 30, 2013 · A 400 means that the request was malformed. In other words, the data stream sent by the client to the server didn't follow the rules. In the case of a REST API with a JSON …

  4. What is REST? Slightly confused - Stack Overflow

    Jan 12, 2011 · REST is a set of rules for building web services. If an API is built according to those rules it is a REST API. How I explained REST to my rubber duck explains some of those …

  5. rest - Create request with POST, which response codes 200 or 201 …

    201: which means CREATED. Meaning *The request has been fulfilled and resulted in a new resource being created. The newly created resource can be referenced by the URI (s) …

  6. What is a callback URL in relation to an API? - Stack Overflow

    Apr 28, 2014 · It's a mechanism to invoke an API in an asynchrounous way. The sequence is the following your app invokes the url, passing as parameter the callback url the api respond with …

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

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

  9. HTTP Status 405 - Method Not Allowed Error for Rest API

    As this "ver" having null service is send status as "204 No Content". And about status code "405 - Method Not Allowed" will get this status code when rest controller or service only supporting …

  10. 403 Forbidden vs 401 Unauthorized HTTP responses - Stack …

    Jul 21, 2010 · Meaning if you have your own roll-your-own login process and never use HTTP Authentication, 403 is always the proper response and 401 should never be used. Detailed …