beefweb
beefweb copied to clipboard
API-Docs: `query/updates`
Hi, I was just noticing that the swagger-api does not mention the query/updates endpoint. Mind adding that?
Hi,
last time I checked Swagger/OpenAPI didn't support server sent events.
/api/query/updates is the same as /api/query, but returns text/event-stream.
An event is sent every time something is changed.
Each event is structured exactly like /api/query response.
player, playlists, playlistItems updates might be sent in a single or in multiple events.
If only player part is changed it won't send playlists and so on.
Periodically server sends empty event to keep connection alive.
Thanks!