I am developing and android video live streaming App with Wowza streaming engine media server (4.5). I want to get a list of live stream sources connected to Wowza, and display them in a list-view. In the Wowza docs, I found the Wowza Streaming Engine REST API, and an implementation example:
curl -X GET --header 'Accept:application/json; charset=utf-8' http://localhost:8087/v2/servers/_defaultServer_/publishers
How do I use the Wowza REST API in android?
A small example or any steps would be helpful.