About 280,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?

    Well Rest obviously shares attributes of other architecture styles etc. it's not all novel and new. Also, soap and rest are not mutually exclusive. A restful service could do so with soap (from …

  3. API request throws a 302 status code -- how to solve/redirect

    Aug 30, 2019 · 302 is a status code returned by the server to indicate that the client should retry the request using a different URL. It's a way to redirect the client to a different endpoint. The …

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

    REST API error code 500 handling Asked 10 years, 11 months ago Modified 9 months ago Viewed 311k times

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

    Jan 20, 2022 · 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 …

  6. rest - 400 vs 422 response to POST of data - Stack Overflow

    I'm trying to figure out what the correct status code to return on different scenarios with a "REST-like" API that I'm working on. Let's say I have an end point that allows …

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

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

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

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

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