I am trying to send notifications to my android phone, using this code
https://bobgrayblog.wordpress.com/2020/03/29/actionable-android-notifications-and-appdaemon/
But it doesn’t seem to work.
It only works if I remove the data parameter and send only the title and message
NotificationData = {"actions":[{"action":"URI","title":"ButtonTitle","uri": "mylink"}],"image":"https://yourdomain.duckdns.org/local/snapshots/myimage.jpg"}
self.call_service("notify/mobile_app_myphone", message="message2", title="tile2", data=NotificationData )
any idea?