I have read a lot of threads now with this issue, most of them getting resolved, but I have not been able to solve my problem using the tips that are supplied in thoose threads.
I have 2 Netatmot precense outdoor cameras and I would like to have notifications from motion detection on them to trigger some external spotlights (not the build in spotlight in the camera).
I am running 0.117.0 on a docker installation in ubuntu.
I have setup the developer account on dev.netatmo and the webhooks are registering as they should according to the logfiles. I have forwarded port 80 and 443 to my internal ip on port 8123 which is running the docker installation.
It all appears to be fine, no errors in the log, I have added:
logger:
default: error
logs:
homeassistant.components.netatmo: debug
To configuration.yaml to get all logs from netatmo and I get:
2020-11-02 09:14:18 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] No weather station available
2020-11-02 09:14:18 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] Data class WeatherStationData added
2020-11-02 09:14:18 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] Data class HomeData added
2020-11-02 09:14:18 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] No weather station available
2020-11-02 09:14:18 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] Data class HomeCoachData added
2020-11-02 09:14:19 DEBUG (MainThread) [homeassistant.components.netatmo.data_handler] Data class CameraData added
2020-11-02 09:14:19 DEBUG (MainThread) [homeassistant.components.netatmo.camera] Adding camera 70:ee:50:36:71:cc Infart
2020-11-02 09:14:19 DEBUG (MainThread) [homeassistant.components.netatmo.camera] Adding camera 70:ee:50:52:68:20 Hönshus
2020-11-02 09:14:19 DEBUG (MainThread) [homeassistant.components.netatmo.netatmo_entity_base] New client camera.netatmo_infart
2020-11-02 09:14:19 DEBUG (MainThread) [homeassistant.components.netatmo.netatmo_entity_base] New client camera.netatmo_honshus
2020-11-02 09:14:27 INFO (MainThread) [homeassistant.components.netatmo] Register Netatmo webhook: https://removed-duckdns-path/api/webhook/removed-webhook-hash
So all looks ok.
I never see any events in the developer event debug view from the netatmo device, but my camera stream images just fine.
After a while I get a ban from the dev.netatmo service, suggesting that I have the wrong url (according to other threads I have read) but I have tried all possible combinations of ports and I still never get any events.
My congifuration.yaml has:
http:
base_url: https://my_url_removed.duckdns.org
ssl_certificate: ../ssl/fullchain.pem
ssl_key: ../ssl/privkey.pem
netatmo:
client_id: my_client_removed
client_secret: my_secret_removed
And internal and external url setup in home assistant is the same for both, without port specified:
External:
https://my_url_removed.duckdns.org
Internal:
https://my_url_removed.duckdns.org
Any help would be appreciated