# 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/liqnkqa
如何在 API 設計中執行分頁**
在 API 設計中,分頁對於高效處理大型數據集和提高性能至關重要。以下是六種常用的分頁技術:01 基於偏移的分頁----------這種技術使用 offset 和 limit 參數來定義起點和要返回的記錄數。例如:GET /orders?offset=0&limit=3優點:易於實現和理解。 缺點:由於需要掃描和跳過記錄,因此偏移量較大時效率可能會降低。 02 基於遊標的分頁----- ⌘ Read more