# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/xliwsia
WebSocket 協議 - 概念原理**
Part1WebSocket 是什麼 WebSocket 是一種網絡傳輸協議,可以在單個 TCP 連接上進行全雙工通信,它位於 OSI 模型的應用層。WebSocket 與 HTTP 不是同一種協議,雖然兩者都位於 OSI 模型的應用層,並且都依賴底層的 TCP 協議。它們有着各自的協議格式,應用不同的場景。WebSocket 協議本身不依賴於 HTTP 協議,但是在 WebSocket 最初的 ⌘ Read more