HTTP (EN)

Protocol

Standard protocol for data transmission on the World Wide Web

Architecture

sequenceDiagram     participant Client     participant Server     Client->>Server: HTTP Request (GET/POST/PUT/DELETE)     Server-->>Client: HTTP Response (200/404/500) 

In Context

  • Typically used together with HTTPS
  • Related to: TCP/IP, REST, WebSocket
  • Example use: Web browsing, API communication
Quelle: AI Generated