简易存储 API 使用说明 ---------------------------------------- • 读取(无需密码) GET /?name= curl -sS "https://store.wrr.fr/?name=mykey" • 写入(需要密码) POST/PUT /?name=&password= (请求体为文本内容) curl -X PUT "https://store.wrr.fr/?name=mykey&password=***" -d "hello world" • 删除(需要密码) DELETE /?name=&password= curl -X DELETE "https://store.wrr.fr/?name=mykey&password=***" • 列表(需要密码,返回 JSON 数组) GET /list?password= curl -sS "https://store.wrr.fr/list?password=***"