# 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/u3agmka
Go 實現自己的授權認證系統 go-oauth2
01 前言這篇文章,讓我們來學習如何創建自己的授權認證系統吧!在使用 Go 語言時,我們可以藉助一個叫做 go-oauth2 的開源框架來快速實現這個目標。 一種開放協議,允許以簡單和標準的方法從 Web、移動和桌面應用程序進行安全授權。 https://github.com/go-oauth2/oauth202 什麼是 OAuth 2.0 呢?OAuth2.0 (Open Authori ⌘ Read more