John Carlo Regalathelastweaboo.hashnode.dev·Nov 29, 2024Activity 29: HTTP MethodsIn RESTful APIs, HTTP methods define the actions that can be performed on resources. The primary methods are GET, POST, PUT, DELETE, and PATCH. Here's an overview of each: 1. GET: Retrieve Data The GET method is used to retrieve data from a server. I...Discusshttpmethods
Jong-Dae Parkjdpark.hashnode.dev·Nov 28, 2024RFC 9110 HTTP Semantics - TRACE1] TRACE trace는 요청 메시지의 원격 application-level의 loop-back을 요청한다. 요청의 최종 수신자(final recipient)는 민감한 데이터를 포함한 필드를 제외하고 수신한 메시지를 200(OK) 응답의 내용으로 클라이언트에 다시 반영해야 합니다.(should) message/http 형식은 이를 수행하기 위한 한 가지 방법이다. 최종 수신자는 Origin Server이거나 요청에서 Max-Forwards ...Discusshttpmethods
Rhed Aliganrhedaligan.hashnode.dev·Nov 25, 2024Activity 29: HTTP Methods | Aligan, Rhed N.GET Purpose: Retrieves data from the server. How it works: You ask the server for information (like a list of universities), and the server sends it back without changing anything. Example Imagine you have a store named “Rhed Store Applian...DiscusshttpmethodsRESTAPIs
Jong-Dae Parkjdpark.hashnode.dev·Nov 2, 2024RFC 9110 HTTP Semantics - POST1] POST POST 메서드는 target resource가 리소스 자체의 특정한 의미에 따라 요청에 포함된 representation을 처리하도록 요청한다. 예를 들어, 다음의 기능을 수행한다. HTML form에 입력된 필드같은 데이터 블록을 데이터 처리 프로세스에 제공 게시판, 뉴스 그룹, 메일링 리스트, 블로그, 또는 비슷한 기사 그룹에 메시지 게시(posting) origin server에서 식별되지 않은 새로운 리소스 생성 ...Discusshttpmethods
Jong-Dae Parkjdpark.hashnode.dev·Oct 28, 2024RFC 9110 HTTP Semantics - HEAD1] HEAD HEAD method는 GET과 동일하지만 서버는 응답에 content를 보내면 안된다.(must not) HEAD는 representation data의 전송 없이 selected representation에 대한 메타데이터를 얻기 위해 사용된다. 흔히 hypertext links를 테스트하거나 최근 수정 사항을 찾기 위해 사용한다. 서버는 HEAD 요청을 보낼 때 응답으로 GET으로 요청을 보냈을 때와 동일한 header fi...Discusshttpmethods
Danilo Buenafe Jrjhayr1231.hashnode.dev·Oct 14, 2024Activity 29: HTTP MethodsWhat is an HTTP Method? HTTP methods are a set of request methods used in the Hypertext Transfer Protocol (HTTP) to indicate the desired action to be performed on a specific resource on a web server. Each method serves a different purpose and helps d...Discusshttp
Joan AyebolaforfreeCodeCampfreecodecamp.org·Oct 2, 2024Learn HTTP Methods like GET, POST, and DELETE – a Handbook with Code ExamplesWhen you interact with websites or apps, a lot happens behind the scenes. A key part of this process is how your browser or app talks to a server. HTTPS methods define what action needs to happen – it could be fetching data, sending information, or m...Discusshttpmethods
Deepraj Baidyathelocaldev.hashnode.dev·Jul 21, 2024Essential Networking Techniques for Flutter Developers [ PART 1 ]In the dynamic world of software development, the ability to fetch and manage data from remote sources is a crucial skill. Whether you're building a web application, a mobile app, or any other software that interacts with the internet, you'll likely ...Discussfpdart
Cloud Tunedcloudtuned.hashnode.dev·Jun 5, 2024Cheat Sheet #day10 - HTTP MethodsHTTP Methods Cheat Sheet HTTP methods define the action to be performed for a given resource in a web application. Here's a quick reference to the most commonly used HTTP methods and their typical use cases. GET Purpose: Retrieve data from a server....DiscussCheat Sheetshttpmethods
Arturcode-with-arthur.hashnode.dev·Jun 3, 2024What Are RESTful APIs and How Do They Work?In today's interconnected world, APIs (Application Programming Interfaces) play a crucial role in enabling different software systems to communicate with each other. Imagine you have a friend who speaks a different language. To talk to each other, yo...DiscussAPIDesign