# 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/vbztlga
Go gRPC 之 TLS 認證 - 自定義方法認證**
【導讀】本文將介紹如何爲 gRPC 添加安全機制,包括 TLS 證書認證和 Token 認證。TLS 證書認證什麼是 TLSTLS(Transport Layer Security,安全傳輸層),TLS 是建立在傳輸層TCP 協議之上的協議,服務於應用層,它的前身是 SSL(Secure Socket Layer,安全套接字層),它實現了將應用層的報文進行加密後再交由 TCP 進行傳輸的功能。TL ⌘ Read more