iobroker.netatmo
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"common": { | ||
"name": "netatmo", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"title": "Netatmo Adapter", | ||
@@ -33,3 +33,5 @@ "desc": { | ||
"unknown_person_time": 24, | ||
"location_elevation": 0 | ||
"location_elevation": 0, | ||
"id": "", | ||
"secret": "" | ||
}, | ||
@@ -36,0 +38,0 @@ "objects": [ |
15
main.js
@@ -40,2 +40,4 @@ /* jshint -W097 */// jshint strict:false | ||
var scope = ""; | ||
var id = "574ddd152baa3cf9598b46cd"; | ||
var secret = "6e3UcBKp005k9N0tpwp69fGYECqOpuhtEE9sWJW"; | ||
@@ -69,3 +71,10 @@ // Backward compatibility begin ... | ||
if (adapter.config.netatmoWelcome) { | ||
scope += " read_camera access_camera"; | ||
scope += " read_camera read_presence"; | ||
if (adapter.config.id && adapter.config.secret) { | ||
id = adapter.config.id; | ||
secret = adapter.config.secret; | ||
scope += " access_camera access_presence" | ||
} | ||
} | ||
@@ -76,4 +85,4 @@ | ||
var auth = { | ||
"client_id": "574ddd152baa3cf9598b46cd", | ||
"client_secret": "6e3UcBKp005k9N0tpwp69fGYECqOpuhtEE9sWJW", | ||
"client_id": id, | ||
"client_secret": secret, | ||
"scope": scope, | ||
@@ -80,0 +89,0 @@ "username": adapter.config.username, |
{ | ||
"name": "iobroker.netatmo", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "ioBroker netatmo Adapter", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -16,2 +16,5 @@ ![Logo](admin/netatmo.png) | ||
### 1.0.1 | ||
* (PArns) Fixed scope problems for presence & welcome (requires your own API key!) | ||
### 1.0.0 | ||
@@ -18,0 +21,0 @@ * (PArns) Added live camera picture & stream for presence & welcome |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
112525
1849
86