About 9,860,000 results
Open links in new tab
  1. http - Why we should use REST? - Stack Overflow

    Mar 16, 2011 · Why should I use REST if I can get my job done with only post and get requests?

  2. What are REST API error handling best practices? [closed]

    The HTTP Status codes are the messaging framework that allows parties to communicate with each other without increasing the HTTP payload. They are already established universal …

  3. rest - Is the Twitter API *really* RESTful? - Stack Overflow

    May 4, 2017 · Hopefully that provides enough context for my question then - can that really be called "REST"? I get the impression that 90% of the so-called RESTful implementations …

  4. How do I implement login in a RESTful web service?

    80 I am building a web application with a services layer. The services layer is going to be built using a RESTful design. The thinking is that some time in the future we may build other …

  5. What is REST? Slightly confused - Stack Overflow

    Jan 12, 2011 · REST is typically used over HTTP, primarily due to the simplicity of HTTP and its very natural mapping to RESTful principles. REST however is not tied to any specific protocol. …

  6. rest - What exactly is RESTful programming? - Stack Overflow

    Mar 22, 2009 · What exactly is RESTful programming?Nonetheless, the heart of REST (in practical application) is "don't use GET to make changes, use POST/PUT/DELETE", which is …

  7. Transactions in REST? - Stack Overflow

    Transactions might not match restful, but it seems like transactions should be layered ontop, unrelated to the rest calls apart from the fact the request headers would contain a transaction …

  8. How to call restful API (Authenticated endpoints) in SSIS for ETL

    Dec 6, 2023 · I'm relatively new to SSIS and restful API (AND every type of API), it's a bit hard to figure out the topic for me. So how to call restful API in SSIS to ETL? I don't get this; If the …

  9. php - How to build a RESTful API? - Stack Overflow

    Jan 14, 2011 · The hardest part of building a restful api is the design of the it, and making it truly restful, think CRUD in database terms. It could be that you really want an xmlrpc interface or …

  10. Use of PUT vs PATCH methods in REST API real life scenarios

    In the real world, this happened to me with internet application that had a RESTful server and a relational database with a Customer table that was "wide" (about 40 columns). I mistakenly …