Matthias Kleine
Matthias Kleine
Habe keine weiteren API Keys
Wie lautet denn der Fehler? Normalerweise sollte `null` zurückgegeben werden. https://github.com/ioBroker/ioBroker.javascript/blob/840d03855636c4271971afc202532d008c22d264/lib/sandbox.js#L986-L988
Okay that's an edge case. You can use JSONata to get that Attribute. `position.altitute` is a path in an object like ``` { "position": { "altitude": 1234 } } ```...
This is not easy to implement. e.g. ``` { "bla": { "geo.position": { "altitude": 1234 } } } ``` What is the path? `bla.geo.position.altitude` ? Maybe we should implement the...
The structure of the response is not very common: ```json "position.altitude": 471, "position.direction": 323, "position.hdop": 1.6, "position.latitude": 48.48151, "position.longitude": 11.236118, "position.pdop": 1.9, "position satellites": 8, "position.speed": 0, "position.valid": true, ```...
But `javascript.0.scriptEnabled.example-script` is not the ID of the script. I don't get the use case of this request. `Name of script` already provides the object id
Example: The object id of a script is `script.js.Web.Instagram-Followers`. You can use the following Block to get this ID: If you want to know the current state of the script...
You could use `message to other script` when the script starts (which has a trigger). In that case you don't need to know the object id of the other script.
But in which case is a trigger (on the enabled state) useful for the current script?
Duplicate of #1715