# 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/qfgti5q
寫給 go 開發者的 gRPC 教程 - 用戶認證**
gRPC 的用戶認證----------用戶認證,簡單來說就是驗證請求的用戶身份,避免破壞者僞造身份獲取他人數據隱私。比如當訪問微博網站時,微博服務端通過用戶認證來識別你的身份,並返回正確的主頁數據用戶認證有很多方式。例如 HTTP 中使用的 cookie、session、oauth、jwt 等等。gRPC 框架並不限制用戶認證的方式,而是提供了開放的能力來支持各種各樣的用戶認證gRPC 的用戶 ⌘ Read more