Understanding HTTP Request Methods
For more quality interview questions and study notes, visit KamaCoder Notes:https://notes.kamacoder.com Today’s recommended quality notes: https://notes.kamacoder.com/questions/500003 “What are the HTTP request methods?” unsetunsetBrief Answerunsetunset HTTP/1.1 originally defined 8 core request methods (RFC 2616, 1999): GET: Retrieve resources, parameters in the URL, safe and idempotent. POST: Submit data (e.g., form data), may change server state. PUT: … Read more