# 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/m63c3vq
golang 源碼分析: chromedp
chromedp 是 go 寫的,支持 Chrome DevTools Protocol 的一個驅動瀏覽器的庫。https://github.com/chromedp/chromedp。隨着前端 spa 應用的普及,傳統的爬蟲很難抓取到我們想要的內容,Chrome DevTools Protocol (CDP) 提供了一個完整的瀏覽器接口,使得我們可以用瀏覽器一樣的環境來模擬請求來 ⌘ Read more