# 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/k2kq7yq
SpringBoot 快速實現 api 加密!**
在項目中,爲了保證數據的安全,我們常常會對傳遞的數據進行加密。常用的加密算法包括對稱加密(AES)和非對稱加密(RSA),博主選取碼雲上最簡單的 API 加密項目進行下面的講解。 https://gitee.com/isuperag/rsa-encrypt-body-spring-boot項目介紹該項目使用 RSA 加密方式對 API 接口返回的數據加密,讓 API 數據更加安全。別人無法對提供 ⌘ Read more