无法进入巢穴

时间:2014-10-28 15:01:34

标签: python firebase nest-api

我无法将ambient_temperature_f之类的Nest数据投放到https://developer-api.nest.com或重定向的Firebase网址。我怀疑Nest中有一些特定内容需要在我正在使用的Firebase模块中进行调整(https://ozgur.github.io/python-firebase/)。

来自firebase.py

@http_connection(60)
def make_put_request(url, data, params, headers, connection):
    """
    Helper function that makes an HTTP PUT request to the given firebase
    endpoint. Timeout is 60 seconds.
    `url`: The full URL of the firebase endpoint (DSN appended.)
    `data`: JSON serializable dict that will be stored in the remote storage.
    `params`: Python dict that is appended to the URL like a querystring.
    `headers`: Python dict. HTTP request headers.
    `connection`: Predefined HTTP connection instance. If not given, it
    is supplied by the `decorators.http_connection` function.

    The returning value is a Python dict deserialized by the JSON decoder. However,
    if the status code is not 2x or 403, an requests.HTTPError is raised.

    connection = connection_pool.get_available_connection()
    response = make_put_request('http://firebase.localhost/users',
                                '{"1": "Ozgur Vatansever"}',
                                {'X_FIREBASE_SOMETHING': 'Hi'}, connection)
    response => {'1': 'Ozgur Vatansever'} or {'error': 'Permission denied.'}
    """
    timeout = getattr(connection, 'timeout')
    response = connection.put(url, data=data, params=params, headers=headers, timeout=timeout)

    print('[make_put_request]: [%s][%s][%s][%s]\n' %(url, data, params, headers))

    if response.ok or response.status_code == 403:
        return response.json() if response.content else None
    else:
        response.raise_for_status()

打印出来:

[make_put_request]: [https://developer-api.nest.com/devices/thermostats/DEVICE_ID/ambient_temperature_f.json?auth=VALID_AUTH_TOKEN][71][{}][{}]

返回错误:

Traceback (most recent call last):
  File "C:\py\nest_auth.py", line 90, in <module>
    put_result = firebase.put(data_url, field_name, 71)
  File "C:\Python34\lib\site-packages\firebase\decorators.py", line 19, in wrapped
    return f(*args, **kwargs)
  File "C:\Python34\lib\site-packages\firebase\firebase.py", line 312, in put
    connection=connection)
  File "C:\Python34\lib\site-packages\firebase\decorators.py", line 19, in wrapped
    return f(*args, **kwargs)
  File "C:\Python34\lib\site-packages\firebase\firebase.py", line 77, in make_put_request
    response.raise_for_status()
  File "C:\Python34\lib\site-packages\requests\models.py", line 808, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 400 Client Error: Bad Request

这在使用firebaseio.com目标但但不适用于Nest时有效:

put_result = firebase.put('/devices/thermostats/DEVICE_ID/', 'ambient_temperature', 71)

1 个答案:

答案 0 :(得分:2)

根据documentation ambient_temperature_f是一个只读字段,表示恒温器报告的环境温度。覆盖它是没有意义的,因为它是传感器读数。

我想你要写target_temperature_f,这是恒温器加热或冷却的温度。