我正在一个包含多个Nest摄像头的网站上工作,我想知道在用户点击链接查看此摄像头之前是否可以显示摄像头是否在线。
我会在javascript中使用XMLRequest进行此操作,但我无法找到该怎么做。
答案 0 :(得分:0)
你会为它做一个REST调用,特别是HTTP GET。请求网址如下所示:
https://developer-api.nest.com/devices/cameras/<device_id>/is_online?auth=<auth_token>
使用cURL看起来像这样:
curl -v -L -H
"Authorization: Bearer <auth_token>"
-X GET "https://developer-api.nest.com/devices/cameras/<device_id>/is_online"
参考:https://developer.nest.com/documentation/api-reference/overview#cameras