我正在使用MistServer,我需要能够通过API获取到流的当前连接数,但是我正在努力获取正确的URL以返回活动连接(流的查看者)的数量。
如果我使用此URL:
http://myserver.com:4242/api?command={"authorize":{"username":"test","password":"941d7b88b2312d4373aff526cf7b6114"}}
(显然是我自己的用户/密码)
我可以得到答复,但是其中不包含我需要的信息,我从此处https://www.mistserver.org/doxygen/api.html
的文档中了解到这些信息是stats_streams返回的:
[
//Array of requested data types
"clients", //Current viewer count
"lastms" //Current position in the live buffer, if live
]
如何修改URL为我提供.json响应?
谢谢