Event Store - Read a Stream of Events with HTTP API
要透過 HTTP API 去讀取 Stream 下的所有 Event,可以像下面這樣向 Event Store 查詢。
http://<URL>/streams/<STREAM_ID>
Accept 可以指定回傳的格式是 JSON。
application/vnd.eventstore.atom+json
或是 XML。
application/atom+xml
像是如果要讀取 newstream Stream 下的所有 Event,就可以像下面這樣透過 CURL 發送請求給 Event Store。
curl -i -H "Accept:application/vnd.eventstore.atom+json" "http://127.0.0.1:2113/streams/newstream"