Hi PA
I have recently re-study the performance of PowerApps Notification (Premium) and found following bugs
Bug 1:
1. PowerAppsNotification.SendPushNotification({recipients:["email1@appemail.com], message:If(IsBlank(TextInput1.Text), " ", TextInput1.Text), openApp: true, params: Table({key: "mymsg", value: msg_app.Text})})
- I can send and receive PowerApps Notification in Android Phone
- But if the message is Blank, it will be not send (and prompt error). So I use a If statement. Is it a known bugs?
- for params: Table({key: "mymsg", value: msg_app.Text} or Table({key: "mymsg", value: "I am sending you message"})
both works, but the message shown (this is populated in a Label1.Text = Param("mymsg"))
is Label1 = I+am+sending+you+message.
(all spaces are appended with "+")
This bugs is similar to powerapps mail which happened 2 years ago and until now, no PA team really looks into this issues.
2. PowerAppsNotification.SendPushNotification({recipients:["app id"], message: "I love you"})
- app id is definitely extracted from powerapps detail in the web. Nothing wrong
- But error and never success:
error: InvalidPrincipalIdorMail, and the recipients : "appid" is not a recognized email address or object identifier in the directory.
Please investigate on these issues.
PK Hong