# 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/f3dbvfq
單點登錄(SSO)實現詳解!!!**
普通登錄提到單點登錄,首先可以想到傳統登錄,通過登錄頁面根據用戶名查詢用戶信息,判斷密碼是否正確,正確則將用戶信息寫到 session,訪問的時候通過從 session 中獲取用戶信息,判斷是否已登錄,登錄則允許訪問。普通登錄的缺點由於 session 不能共享,服務越來越多,並且還服務還搭建集羣,導致每訪問另外一個服務都需要重新登錄。單點登錄單點登錄有個簡稱是 sso,它是一個功能可以控制多個有 ⌘ Read more