Questions tagged [nest-api]

The Nest API allows real time observation and control of Nest devices in the home.

The Nest API allows real time observation and control of Nest devices such as the Nest thermostat, Nest Protect and Nest Cam in the home.

311 questions
3
votes
1 answer

Unable to get Access Token from Nest Server

I am having trouble getting access tokena for Nest. I have the nest-api working on my node.js app, but I am having trouble getting access tokens. It doesn't matter if I connect from different clients, devices or even accounts. I used to have php…
3
votes
1 answer

Non-HTTP[S] OAuth redirect for Nest API

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…
Rick
  • 3,298
  • 3
  • 29
  • 47
3
votes
1 answer

Nest change target_tempreture_f : How to use java http PUT to set target temperature of the Nest Thermostat in android code?

Nest change target_temperature_f : How to use java http PUT to set the target temperature of the Nest Thermostat by android code?
Moe
  • 185
  • 1
  • 8
3
votes
2 answers

Methods for Continual Server-Side Firebase Monitoring (Web Apps)

I'm prototyping a web-app to continuously monitor my nest for updates using the Firebase library, and I would like to discuss methods for doing it. Nest has examples of mobile apps and web apps that use user-side javascript for nest-developers, but…
sgussman
  • 123
  • 1
  • 10
3
votes
2 answers

When I connect to firebase, I only see the structures and no devices (Nest API)

I am trying to read basic information about thermostats using the methods in the thermostat control example (https://developer.nest.com/documentation/control), but when I connect to firebase I only see the structure object (which only contains name,…
sgussman
  • 123
  • 1
  • 10
3
votes
1 answer

Authorization using git bash

I've been trying to work with my Nest thermostat so I can work it into home automation run by my Arduino-based projects. So far, I've completely failed to get anything done. I would greatly appreciate input or redirection to other resources. I…
jfudgeelder
  • 423
  • 3
  • 13
3
votes
1 answer

How do i set temperature by using plain REST not firebase api

I could not find any information on how to set the target temperature or set Away mode. Has anyone successfully gotten it to work? https://developer-api.nest.com/devices.json?auth=asdasdasd ^ Provides the information but how do we modify the…
Mahes
  • 3,938
  • 1
  • 34
  • 39
3
votes
1 answer

Developing NEST client for UI that has no web browser/web view

I'm looking hard into developing a client for a control system, but I'm fairly sure that the authorization process on the client requires a web-view/browser interaction where the user can authorize their devices, etc. My particular UIs may not have…
hvolmer
  • 125
  • 10
3
votes
1 answer

nest API how to get access_token

I got the authorization code from https://home.nest.com/login/oauth2?client_id=CLIENT_ID&state=FOO. I want to get the access_token, but something…
Sha-Pai Li
  • 157
  • 3
  • 15
2
votes
1 answer

Understanding the body decorator in nestjs

Where is the object that references the @body payload stored? If your user controller has a post function. @Post() @HttpCode(HttpStatus.CREATED) create(@Body() user: IUserBase): Promise { return this.usersService.create(user); } Where is the…
user2674150
  • 57
  • 1
  • 10
2
votes
1 answer

Why does Bearer not work in requests authorization header?

I'm having a problem sending an authorization token with Bearer to NEST API via python requests: curl https://developer-api.nest.com -H "Authorization: Bearer c.123" -H "Content-Type: application/json" works fine, however: nest_url =…
user7186882
  • 210
  • 1
  • 3
  • 11
2
votes
1 answer

How do you cancel a Nest ETA using Firebase on iOS?

According to the nest API docs: "To cancel an eta, send estimated_arrival_window_begin = 0. Check that you're sending an integer (0) in this call, not a string ("0"), or the call will fail." See…
MaltZero
  • 23
  • 3
2
votes
0 answers

Nest-API: Nest Protect and Nest Thermostat Occupancy Sensor Data

Is it possible to access data about the occupancy sensor on the nest Protect and Thermostat? Ie last recorded occupancy event? I've had a look on the API-reference but I've had no luck: https://developers.nest.com/documentation/api-reference/
Joe
  • 123
  • 2
  • 3
  • 10
2
votes
1 answer

Is there a public API for when a Rush Hour is on going?

I noticed today my Nest thermostat showed a yellow leaf-like symbol during a rush hour. Is there a way to do a similar call on a Thermostat object like getHasLeaf() to determine if this is currently showing or not?
boltup_im_coding
  • 6,345
  • 6
  • 40
  • 52
2
votes
1 answer

For the Nest Team, why does writing values to thermostat doesn't work properly in Nest SDK?

I'm trying to build a Home Automation Project for my Masters and using the Nest thermostat as part of the project. I'm trying to write an android app to change the target temperature of the thermostat. My thermostat is set to cool. From the original…
Ankit Sharma
  • 663
  • 1
  • 5
  • 17
1 2
3
20 21