diff --git a/index.html b/index.html index 2db495d..b90eb13 100644 --- a/index.html +++ b/index.html @@ -62,7 +62,7 @@
WebApi Based Key Value Pair Storage
Api: https://storage.conchbrain.club/demo/set
+Api: https://kv.conchbrain.club/demo/set
Method: PUT
Content-Type: application/json
@@ -24,7 +24,7 @@
- curl -X PUT 'https://storage.conchbrain.club/demo/set' \ + curl -X PUT 'https://kv.conchbrain.club/demo/set' \ -H 'Content-Type: application/json;' \ -d '{ "key": "Hi", "value": "ConchBrain KVStorage" }'@@ -32,7 +32,7 @@
Api: https://storage.conchbrain.club/demo/get
+Api: https://kv.conchbrain.club/demo/get
Method: GET
Para:
@@ -42,26 +42,26 @@
- curl https://storage.conchbrain.club/demo/get?Hi + curl https://kv.conchbrain.club/demo/get?Hi
Response: "Welcome"
Api: https://storage.conchbrain.club/demo
+Api: https://kv.conchbrain.club/demo
Method: GET
Para:
Custom bucket name (eg. demo)
- curl https://storage.conchbrain.club/demo + curl https://kv.conchbrain.club/demo
Response: JsonStr
Api: https://storage.conchbrain.club/demo/delete
+Api: https://kv.conchbrain.club/demo/delete
Method: DELETE
Para:
@@ -71,7 +71,7 @@
- curl -X DELETE https://storage.conchbrain.club/demo/delete?hello + curl -X DELETE https://kv.conchbrain.club/demo/delete?hello
Response: "Delete successful"