作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在获取和更改 Nest 恒温器提供的一些基本数据时遇到了问题。
使用命令行,我如何获取或更改恒温器上的个别设置或值?
最佳答案
这是几个用户的汇编,解释了如何检索或更改一些基本信息,并添加了我自己的一些经验。无论我在哪里使用 <VALUE>
,将其替换为设置中的适用信息。如果你使用的是 Windows,你需要类似 git-scm 的东西.
curl --data 'code=<AUTH CODE>&client_id=<CLIENT ID>&client_secret=<CLIENT SECRET>&grant_type=authorization_code' https://api.home.nest.com/oauth2/access_token
curl -v -L https://developer-api.nest.com/devices/thermostats?auth=<AUTH CODE>
curl -v -L https://developer-api.nest.com/devices/thermostats/<THERMOSTAT ID>?auth=<AUTH CODE>
curl -v -L https://developer-api.nest.com/devices/thermostats/<THERMOSTAT ID>/target_temperature_f?auth=<AUTH CODE>
curl -v -L -X PUT "https://developer-api.nest.com/devices/thermostats/<THERMOSTAT ID>/target_temperature_f?auth=<AUTH CODE>" -H "Content-Type: application/json" -d "65"
curl -v -L -X PUT "https://developer-api.nest.com/structures/<STRUCTURE ID>/away?auth=<AUTH_TOKEN>" -H "Content-Type: application/json" -d '"away"'
关于nest-api - 获取和更改 Nest 恒温器的基本数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24601798/
使用 cylon.js 抛出错误检索恒温器环境温度我用我的 Access_token 和设备 ID 替换了 ACCESS_TOKEN 代码: var Cylon = require('cylon');
我正在制作一个 Android 应用程序,使用新发布的 API 与恒温器 NEST 通信。我正在按照此页面中提供的说明进行操作:https://developer.nest.com/documenta
我是一名优秀的程序员,十分优秀!