I’m working on my first actionable notification in the Companion app. I’m on version beta-10230-b7c6be45-full. If I add the action example shown in the documentation:
- action: "URI"
title: "View the sun"
uri: "entityId:sun.sun"
The notification appears but I get a 404 Error from the companion app when clicking the link. Here’s the relevant lines from the companion app log.
07-09 14:55:44.336 6608 6637 D ServerConnectionInfo: localUrl is: true, usesInternalSsid is: true, usesWifi is: true
07-09 14:55:44.342 6608 6608 I WM-SystemFgDispatcher: Started foreground service Intent { act=ACTION_START_FOREGROUND cmp=io.homeassistant.companion.android/androidx.work.impl.foreground.SystemForegroundService (has extras) }
07-09 14:55:44.346 6608 6608 D ServerConnectionInfo: localUrl is: true, usesInternalSsid is: true, usesWifi is: true
07-09 14:55:44.346 6608 6608 D ServerConnectionInfo: Using internal URL
07-09 14:55:44.348 6608 6608 D ServerConnectionInfo: localUrl is: true, usesInternalSsid is: true, usesWifi is: true
07-09 14:55:44.349 6608 6608 D ServerConnectionInfo: Using internal URL
07-09 14:55:44.382 6608 6637 D ServerConnectionInfo: localUrl is: true, usesInternalSsid is: true, usesWifi is: true
07-09 14:55:44.385 6608 6637 D ServerConnectionInfo: localUrl is: true, usesInternalSsid is: true, usesWifi is: true
07-09 14:55:44.391 6608 7492 D TrafficStats: tagSocket(116) with statsTag=0xffffffff, statsUid=-1
07-09 14:55:44.397 6608 6608 E WebviewActivity: onReceivedHttpError: 404 : Not Found for: http://192.168.x.x:8123/entityID:sun.sun?external_auth=1
Not sure what I could be doing wrong.