Hi
I diving into notifications with the Home Assistant app for IOS. I’m configuring the flows in Node Red to present a notification with the substream from our cameras. The notification triggers if we are away or alarm is active. However, that part I have sorted.
The problem is that when pressing the notification the Home Assistant app opens instead of showing the camera stream. In order to show the stream I need to swipe on the notification and select view.
So the question is how can I trigger the view by simply pressing the notification?
Here is the payload I push to notify
msg.payload =
{
"data": {
"message": msg.cameraName,
"data": {
"attachment": {
"content-type": "jpeg"
},
"push": {
"category": "camera"
},
"entity_id": msg.image
}
}
}
return msg;