nest-api

Can one set the humidity trait on a thermostat with the new Device Access Console?

依然范特西╮ 提交于 2021-02-08 10:40:46
问题 I'm looking at the Thermostat/device traits available and the humidity trait appears to be read-only. Is there any way to set the humidity level via the API? I have looked in the google Device Access documentation, and all I can find is a read-only humidity trait (developers.google.com/nest/device-access/traits/device/humidity) but no way to set it... wondering if anyone else knows of a way... 回答1: We just have a humidity sensor and there is no way to set the humidity. 来源: https:/

Can one set the humidity trait on a thermostat with the new Device Access Console?

五迷三道 提交于 2021-02-08 10:40:43
问题 I'm looking at the Thermostat/device traits available and the humidity trait appears to be read-only. Is there any way to set the humidity level via the API? I have looked in the google Device Access documentation, and all I can find is a read-only humidity trait (developers.google.com/nest/device-access/traits/device/humidity) but no way to set it... wondering if anyone else knows of a way... 回答1: We just have a humidity sensor and there is no way to set the humidity. 来源: https:/

Nest Camera API

自作多情 提交于 2021-01-28 22:10:13
问题 Anyone tried creating a third party app for Nest for migrated accounts to Google? Looks like they aren't releasing the API anymore for migrated accounts and was discontinued. I'm currently working on a security app that involves the Nest cameras which shows realtime status of Camera Status (Online/Offline) Someone is detected by Nest camera I tried searching for an API to work on this and haven't seen a working API for migrated accounts. Any help is much appreciated. Thanks! Thanks, 回答1:

Nest : getting HTTP/1.1 401 Unauthorized while fetching devices using curl

你离开我真会死。 提交于 2020-01-17 04:59:08
问题 I'm getting HTTP/1.1 401 Unauthorized if I want to fetch Nest devices using curl -v -L https://developer-api.nest.com/devices/?auth=<AUTHCODE> I don't have any device in my Nest account. I think I should get HTTP/1.1 404 Not Found. I tried to fetch thermostats with this command curl -v -L https://developer-api.nest.com/devices/thermostats?auth=<AUTHCODE> then it replies back with HTTP/1.1 200 OK with same AUTHCODE which I think is correct. Again mentioning that I don't have any device in my

Remote host closed connection during handshake with Nest API

£可爱£侵袭症+ 提交于 2020-01-06 15:33:12
问题 Trying out the Nest API, I got the OAuth flow working without problems, made the first API call (to https://developer-api.nest.com/devices.json ), got the 307 redirect as expected, but then my call to the redirect location fails with Remote host closed connection during handshake . I went to the Nest developer event in San Francisco last night, and Lev Stesin told me to post a full log here and mention his name. Code (Apex, running on Force.com): public with sharing virtual class

Error: firebase code = 9999 Too many requests

泄露秘密 提交于 2020-01-04 09:53:23
问题 Im working on an ios home automation app that uses Nest API and Firebase. I started getting this error after changing up the FirebaseManager subscription init method by basically commenting out dispatch_once block (I wanted to see if I could run it more than once): + (FirebaseManager *)sharedManager { static dispatch_once_t once; static FirebaseManager *instance; dispatch_once(&once, ^{ instance = [[FirebaseManager alloc] init]; }); return instance; } Now, even when I revert the code, Im

Non-HTTP[S] OAuth redirect for Nest API

安稳与你 提交于 2020-01-02 08:43:26
问题 I'm trying to develop a native OS X app that uses the Nest API. Unfortunately, their client registration only accepts "https://" URIs for the redirect-URL. Since there's no server involved in this (other than Nest's server), I need to redirect to my app. To do that, I need to be able to redirect to an arbitrary URI. I tried to send this feedback to Nest directly, but they don't seem to have a support contact or bug reporting available. Am I missing some other authentication approach for this

Non-HTTP[S] OAuth redirect for Nest API

て烟熏妆下的殇ゞ 提交于 2020-01-02 08:41:50
问题 I'm trying to develop a native OS X app that uses the Nest API. Unfortunately, their client registration only accepts "https://" URIs for the redirect-URL. Since there's no server involved in this (other than Nest's server), I need to redirect to my app. To do that, I need to be able to redirect to an arbitrary URI. I tried to send this feedback to Nest directly, but they don't seem to have a support contact or bug reporting available. Am I missing some other authentication approach for this

Change Away Status on Nest Thermostat (Nest API)

喜夏-厌秋 提交于 2019-12-25 07:28:07
问题 Using the Nest API I am trying to set the nest thermostat's away status Reading & Setting for temperature is working fine. I have the read and write permissions correctly configured for both thermostat temperature control and for setting thermostat away I can read the status correctly. Does anyone with some experience of this API know how to go about setting this status? in "FirebaseManager.h" Firebase *newFirebase2 = [self.rootFirebase childByAppendingPath:@"structures"]; [newFirebase2

Nest API returning 401 and 429 when using websock stream yet REST ok

ぐ巨炮叔叔 提交于 2019-12-24 12:28:04
问题 I have an android app that uses the Nest API. I used the NestLib from the sample app from Nest but updated the library with 1.1.1. The whole API works great yet some accounts (not all) seem to come back with a 401 error (as well as a -999 on firebase debug) but only when initiating a websock stream (it authenticates ok then on redirect to stream the error appears). I tested this in POSTMAN whereby i can get all the data back using the Accept: text/event-stream header I get a 429 error. From