HTTP(ハイパーテキスト・トランスファー・プロトコル)

World Wide Web(ウェブ)におけるデータ通信の基盤となるアプリケーション層用プロトコル。

HTTPはWebのセマンティクスを定義します。ステータスコード(200 OK, 404 Not Found等)によるエラーハンドリングが基本です。

        graph LR
  Center["HTTP(ハイパーテキスト・トランスファー・プロトコル)"]:::main
  Rel_decentralized_autonomous_organization_dao["decentralized-autonomous-organization-dao"]:::related -.-> Center
  click Rel_decentralized_autonomous_organization_dao "/terms/decentralized-autonomous-organization-dao"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5歳でもわかるように説明

ブラウザとウェブサイトが「話し合う」ための共通のルールのことです。あなたが「ページを見せて」と頼むための方法です。

🤓 Expert Deep Dive

ステートレス、かつリクエスト・レスポンス型。HTTP/2で高速化され、HTTP/3ではUDPベースのQUICが採用されました。セキュリティのためにHTTPS(TLS)が必須となっています。

❓ よくある質問

What is the difference between HTTP and HTTPS?

HTTPS is HTTP with encryption (SSL/TLS), making it secure for sensitive data like passwords.

What does a 404 error mean?

It means the server couldn't find the specific resource you requested.

📚 出典