The issue I’m dealing with right now is that the Nuki bridge doesn’t behave like it’s supposed to according to the binding documentation:
-
In openHAB UI add new thing, select Nuki Binding and start scan. LED on bridge should light up.
The light on the bridge doesn’t light up in my case. I tried pressing the button to see what happens but the bridge is not discovered.
Things that I tried:
-
Manual addition. I set the bridge with the correct IP address, port and API Token, but it stayed in “initializing” state and never went on line.
-
Resetting the bridge through the mobile application and trying both automatic discovery and manual addition.
-
Checking if the bridge worked at all through the bridge management function of the mobile app, check the server connection, and connection to the smartlock. Everything works correctly in the official Nuki mobile app.
-
Check that the bridge is discoverable through the API official function (chapter 3 of the V1.13.3 documentation) through calling https://api.nuki.io/discover/bridges returned the correct JSON array.
{ "bridges": [ { "bridgeId": 1946588156, "ip": "192.168.1.164", "port": 8080, "dateUpdated": "2025-11-21T15:23:28Z" } ], "errorCode": 0 } -
Activating the API and retrieving the token through the /auth command worked exactly as specified in section 5 of the official documentation, meaning that a call to http://192.168.1.164:8080/auth caused the light on the bridge to light up and pressing the button returned the correct API parameters exactly as it was supposed to happen:
{ "success": true, "token": "s2d2k6" }
Everything seems to indicate that the bridge is working correctly but it still can’t be discovered or added manually in OH5. Therefore I’m starting to suspect that something isn’t working with the Nuki binding.
Any help will be greatly appreciated
Claude