Arend de Boer

Results 17 comments of Arend de Boer

I don't think ``` data.B``` exists here. You could use ```util.inspect``` to see the full object structure: ``` const util = require('util') console.log(util.inspect(data, {showHidden: false, depth: null})) ``` I would...

Have a look here and try my sample code. It should work. https://github.com/jaggedsoft/node-binance-api/issues/432#issuecomment-919463672

This is how I call it: ``` const api = new Netatmo({ client_id: 'clientId', client_secret:'clientSecret', scope: 'read_station', refresh_token: 'refreshToken', }) ``` It's probably the scope that is missing. I only...

Looking into it a bit, the fork skips the authenticate function in favor of authenticate_refresh. authenticate() does some variable initialization like: ``` scope = args.scope || 'read_station read_thermostat write_thermostat read_camera...

> Sorry I totally overlooked your refresh token question. Glad you got it working.

Thanks for the tip! \ First day with this library and couldn't figure out why I had duplicates in my result. Turned out to be a NULL DATETIME value. connection...

In Next.js this can be solved with dynamic imports ``` import dynamic from 'next/dynamic' const BootstrapSwitchButton = dynamic( () => import('bootstrap-switch-button-react'), { loading: () => loading, ssr: false // This...