# 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/mxuzblq
Golang 中的 RESTful API 最佳實踐**
【導讀】本文結合 Go Web 再次梳理了 RESTful API 的相關最佳實踐。RESRful API 已經流行很多年了,我也一直在使用它。最佳實踐也看過不少,但當一個項目完成,再次回顧 / 梳理項目時,會發現很多 API 和規範還是多少有些出入。在這篇文章中,我們結合 Go Web 再次梳理一下 RESTful API 的相關最佳實踐。示例完整代碼在這裏 https://github.comRead more