# 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/jgxxxqa
Go 語言微服務實戰之 API 網關**
【導讀】本文介紹了用 Go 語言編寫 API Gateway 所需的技術和設計。上一篇文章我們用 etcd 做爲服務發現組件,替換了 micro 默認的基於 mnds 的服務發現,並簡單通過跟蹤源碼瞭解了服務註冊以及發現的原理。這篇文章,我們來認識微服務架構中另外一個很常見的東東:API Gateway。1、API 網關是什麼-----------我們把一個應用拆分成了一個一個的微服務後,客戶端如 ⌘ Read more