MotionEye webhook https

Hi everyone,

I recently updated my Home Assistant instance to use HTTPS with Let’s Encrypt and made the necessary changes in configuration.yaml.
Since this update, the MotionEye webhook no longer works.

I also added Telegram notifications in MotionEye, so I can confirm that motion is detected because I receive the Telegram alerts. However, the webhook that should trigger the notification process is not working anymore.

Has anyone experienced this issue or can help me troubleshoot it?
Thank you in advance for your support!

Best regards,
Ciao

I have found a solution. instead to directly webhook I have added this command in MotionEye

curl -k --location “https://xxxxxxxxxxxx.local:8123/api/webhook/” --header “Content-Type: application/x-www-form-urlencoded” --data-urlencode “camera=01” --data-urlencode “status=motion” --data-urlencode “timestamp=$(date +%s)”

xxxxxxxxxxxxxx is the local name of my home assistant
is the key
camera=01 is for my configuration i have used the same for the three cameras

with this configuration works!