🛠️ToolsShed

Riferimento Metodi HTTP

Guida completa ai metodi HTTP — GET, POST, PUT, DELETE, PATCH e altro.

GETSicuro: Idempotente:

Retrieves a resource without modifying server state. The most commonly used HTTP method.

Caso d'uso: Fetching a webpage, API data, or file.

POSTSicuro: NoIdempotente: No

Submits data to the server to create a new resource or trigger a process.

Caso d'uso: Form submission, creating a new record via API.

PUTSicuro: NoIdempotente:

Replaces the entire target resource with the request payload.

Caso d'uso: Updating a user profile — replaces all fields.

PATCHSicuro: NoIdempotente: No

Partially modifies a resource — only sends the fields that need updating.

Caso d'uso: Updating only the email of a user record.

DELETESicuro: NoIdempotente:

Removes the target resource from the server.

Caso d'uso: Deleting a blog post or API record.

HEADSicuro: Idempotente:

Same as GET but returns only headers, not the response body.

Caso d'uso: Checking if a URL exists or getting Content-Length.

OPTIONSSicuro: Idempotente:

Describes the communication options for the target resource. Used in CORS preflight.

Caso d'uso: CORS preflight requests.

TRACESicuro: Idempotente:

Performs a message loop-back test along the path to the target resource.

Caso d'uso: Debugging proxy chains (rarely used, often disabled).

CONNECTSicuro: NoIdempotente: No

Establishes a tunnel to the server identified by the target resource.

Caso d'uso: HTTPS tunneling through HTTP proxies.

Comments & Feedback

Comments are powered by Giscus. Sign in with GitHub to leave a comment.