> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/network/protocols/http_method.md).

# HTTP\_Method

요청 대상에 대해 서버가 수행하길 바라는 동작입니다.

HTTP 표준 메소드는 보통 아래 **8개**를 말합니다.

* GET
* POST
* PUT
* PATCH
* DELETE
* HEAD
* OPTIONS
* TRACE

<details>

<summary>GET</summary>

리소스를 가져오는 요청입니다.

</details>

<details>

<summary>POST</summary>

요청 대상에게 데이터를 보내는 메소드입니다.\
전송할 데이터는 보통 HTTP body에 포함됩니다.

</details>

<details>

<summary>PUT</summary>

리소스를 **대체**하는 요청입니다.\
리소스가 없으면 생성하는 서버도 있습니다.

</details>

<details>

<summary>PATCH</summary>

리소스를 **부분 변경**하는 요청입니다.

</details>

<details>

<summary>DELETE</summary>

리소스를 삭제하는 요청입니다.

</details>

<details>

<summary>HEAD</summary>

GET과 동일하지만 **body 없이 header만** 받습니다.

</details>

<details>

<summary>OPTIONS</summary>

서버가 지원하는 메소드/옵션을 조회합니다.\
CORS preflight에도 사용됩니다.

</details>

<details>

<summary>TRACE</summary>

요청이 중간에 어떻게 처리되는지 추적합니다.\
실무에서는 보통 꺼둡니다.

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/network/protocols/http_method.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
