# 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/7jp3fla
Golang 語言 gRPC 服務怎麼同時支持 gRPC 和 HTTP 客戶端調用?**
01介紹關於 gRPC 的文章,我們之前寫過幾篇,如果讀者朋友還對 gRPC 不瞭解,我建議您可以翻閱一下公衆號的歷史文章。當我們需要提供 gRPC 服務的 RESTful API 時,可以先創建一個 gRPC 客戶端服務,在 gRPC 客戶端服務編寫 RESTful API,接收到 HTTP 請求時,通過 gRPC 客戶端服務調用 gRPC 服務端服務的方法。相信讀者朋友們也意識到,僅僅爲了提供 ⌘ Read more