Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 570 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 570 Bytes

Azure app demo

Description

A JSON over HTTP server hosted at https://kloda.azurewebsites.net that exposes endpoints for writing to and reading from an in-memory, append-only log.

Usage

Append a record with a Base64-encoded value:

curl -X POST https://kloda.azurewebsites.net -d '{"record":{"value":"SGVsbG8gQXp1cmUK"}}'

Get a record by key:

curl -X GET https://kloda.azurewebsites.net -d '{"key":0}'

Sources

Adapted from [1] and [2].