I’m trying to script my own version of Nuki support into OpenHAB without using the OpenHAB Nuki Binding as its not proving reliable and I have a question about callback.
According to the documentation
The new lock state will be sent to the callback url by executing a POST request and posting a JSON list in the following format:
{“nukiId”: 11, “deviceType”: 0, “mode”: 2, “state”: 1, “stateName”: “locked”, “batteryCritical”: false}
I’ve created a string Item “NukiCallbackTest” in OpenHAB and added the following callback.
http://OpenHABServer/rest/items/NukiCallbackTest
the link at http://myNukiBridge:8080/callback/list
takes me to the item in OpenHAB, but the item doesn’t receive any updates
What am I missing?