About 56 results
Open links in new tab
  1. What is the difference between POST and PUT in HTTP?

    PUT is used by FB to update the comment because an existing resource is being updated, and that is what PUT does (updates a resource). PUT happens to be idempotent, in contrast to POST.

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

    First of all, some definitions: PUT is defined in Section 9.6 RFC 2616: The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers to an a...

  3. ¿Cual es la diferencia entre los verbos Patch y Put?

    En la facultad me enseñaron a usar el verbo Patch para hacer modificaciones y en internet veo que generalmente se usa Put. Me gustaría que alguien me explique la diferencia entre ambos.

  4. What is the difference between PUT, POST, and PATCH?

    Jun 27, 2015 · Difference between PUT, POST, GET, DELETE and PATCH in HTTP Verbs: The most commonly used HTTP verbs POST, GET, PUT, DELETE are similar to CRUD (Create, Read, …

  5. What is the main difference between PATCH and PUT request?

    Feb 9, 2014 · PUT and PATCH methods are similar in nature, but there is a key difference. PUT - in PUT request, the enclosed entity would be considered as the modified version of a resource which …

  6. What is the usefulness of PUT and DELETE HTTP request methods?

    Aug 27, 2012 · PUT is for putting or updating a resource on the server: The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers to an …

  7. Why HTTP method PUT should be idempotent and not the POST in ...

    Feb 22, 2018 · All of the necessary information is in the specification (RFC 7231's definitions of PUT and idempotent), and in the server's announcement that the resource supports PUT. Note that …

  8. Where should I put <script> tags in HTML markup? - Stack Overflow

    When embedding JavaScript in an HTML document, where is the proper place to put the <script> tags and included JavaScript? I seem to recall that you are not supposed to place these in the &lt...

  9. What's the difference between a POST and a PUT HTTP REQUEST?

    Mar 24, 2014 · The difference between POST and PUT is that PUT is idempotent, that means, calling the same PUT request multiple times will always produce the same result (that is no side effect), …

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

    Aug 27, 2013 · The expected method for updating an existing record is PUT. So your choice should be PUT. POST is generally used for inserting a new record with a brand new content like in the example …