# 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/zbpkofa
使用 golang 進行證書籤發和雙向認證**
【導讀】本文介紹 go 語言實現認證的思路。前言--數字證書是一個經證書授權中心數字簽名的包含公開密鑰擁有者信息以及公開密鑰的文件。證書籤發涉及到了非對稱加密方面的知識, 這裏介紹使用 golang 中的 x509 標準庫進行證書自簽發, 還有證書籤發後如何使用 golang 進行雙向認證.自簽發證書-----生成根證書根證書是 CA 認證中心給自己頒發的證書, 是信任鏈的起始點. 這裏我們自己做 ⌘ Read more