Closed planet4 closed 6 years ago
Hi, I had the same problem but I've found the solution. Go to your module location open node_helper.s file
change these lines:
var url = config.host + ':' + config.port + '/api/states/' + devicename;
to:
var url = config.host + ':' + config.port + '/api/states/' + devicename + '?api_password=yourpassword';
and these:
var url = config.host + ':' + config.port + '/api/services/' + domain + '/' + service;
to:
var url = config.host + ':' + config.port + '/api/services/' + domain + '/' + service + '?api_password=yourpassword';
Cheers
I have same situation. Did you had updated HA recently? I did.
see my fork until pull #3 is completed
Thanks for sharing. I am trying this module but wont get any data. I just do not understand how you can fetch the data without any api key or login/password. Is there anything I missed?