What is the difference between HTTP PUT and POST methods
Both PUT and POST can be used for creating. But generally, in practice, we always use PUT for UPDATE and POST for CREATE operations. PUT :- RFC-2616 clearly mention that PUT method requests for the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers to an already existing resource – an update operation will… Read More »