# 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/itkimyq
從頭開始在 Go 中設計一個無密碼的登錄系統**
無密碼登錄是一種誤導性的說法,因爲在任何認證步驟中都會以這樣或那樣的方式涉及密碼。即使是在生物識別系統中,你的生物識別技術也充當了密碼。無密碼的概念是圍繞着爲用戶創建臨時密碼而展開的。以達到減少攻擊面的目的。請放心,如果密碼每次都改變,那麼攻擊者將不得不獲得用戶的郵箱賬號或手機號來破解系統。本文是系列博客的一部分,我們將從頭開始構建無密碼認證系統的後端和前端。這裏使用的代碼不應該被用作任何項目的種 ⌘ Read more