我正在使用 grandstream UCM6104 。
我该怎么做?
我应该使用哪种API?
答案 0 :(得分:0)
您需要使用设备的Web服务,您可以使用该流的本地IP地址访问这些服务。
参考: http://www.grandstream.com/sites/default/files/Resources/GXV_GMI_Web_Service_Guide.pdf
实施例
您可以使用以下命令从终端
进行卷曲curl -H "Content-Type: text/xml" -D "cookies.txt" "http://192.168.123.127/manager?action=login&username=admin&secret=admin&format=json&jsoncallback=?"
这里,我在上面的命令中使用默认用户名(admin)和密码(admin);相应地改变
此处,192.168.123.127是grandstream手机的IP地址
curl -H "Content-Type: text/xml" --cookie "cookies.txt" "http://192.168.123.127/manager?action=status&format=json&jsoncallback=?"