🛠️ToolsShed

HTTP Metodları Referansı

HTTP metodlarına tam kılavuz — GET, POST, PUT, DELETE, PATCH ve daha fazlası.

GETGüvenli: EvetIdempotent: Evet

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

Kullanım durumu: Fetching a webpage, API data, or file.

POSTGüvenli: HayırIdempotent: Hayır

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

Kullanım durumu: Form submission, creating a new record via API.

PUTGüvenli: HayırIdempotent: Evet

Replaces the entire target resource with the request payload.

Kullanım durumu: Updating a user profile — replaces all fields.

PATCHGüvenli: HayırIdempotent: Hayır

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

Kullanım durumu: Updating only the email of a user record.

DELETEGüvenli: HayırIdempotent: Evet

Removes the target resource from the server.

Kullanım durumu: Deleting a blog post or API record.

HEADGüvenli: EvetIdempotent: Evet

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

Kullanım durumu: Checking if a URL exists or getting Content-Length.

OPTIONSGüvenli: EvetIdempotent: Evet

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

Kullanım durumu: CORS preflight requests.

TRACEGüvenli: EvetIdempotent: Evet

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

Kullanım durumu: Debugging proxy chains (rarely used, often disabled).

CONNECTGüvenli: HayırIdempotent: Hayır

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

Kullanım durumu: HTTPS tunneling through HTTP proxies.

Comments & Feedback

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