# 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/gepv7ha
「Go 框架」深入理解 web 框架的中間件運行機制**
大家在使用 iris 框架搭建 web 系統時,一定會用到中間件。那麼你瞭解中間件的運行機制嗎?你知道爲什麼在 iris 和 gin 框架的請求處理函數中要加 c.Next() 函數嗎?本文就和大家一起探究該問題的答案。一、中間件的基本使用----------在 web 開發中,中間件起着很重要的作用。比如,身份驗證、權限認證、日誌記錄等。以下就是各框架對中間件的基本使用。1.1 iris 框架中 ⌘ Read more