I regularly use the push notifications feature through Firebase and I use HTTP POST for send.
Does anyone know how to insert smileys into the notification text?
What text do I need to enter to display the smileys? (in PostDATA)
Thanks in advance to anyone who wants to help me.
I tried to put this unicode 😀 in Body of PostDATA but not work
PostDATA="{""message"":{""token"":""eOvp_BlbQSWIiklmR5kKX5:APA....................................................h2PYqHDhPUhB3KMI9wAYrWnZIWDUw6Z9TnPVHGBmL-VjRyrZtk3AofJ-GkI83-XUfqz1PJ7rpj67ZRX-rey35Opn4p_ifx-cI"",""notification"":{""body"":""😀"",""title"":""LE ANNOTAZIONI DI DOMANI"",""image"":""http://www.xxxxxxxxx.net/img/note4.png""}}}"
Does anyone know how to insert smileys into the notification text?
What text do I need to enter to display the smileys? (in PostDATA)
Thanks in advance to anyone who wants to help me.
ACCESS code for send:
Public Sub notifica_firebase(TITOLO As String, testonotif As String, IMAGEURL As String, ToTopics As String)
On Error GoTo NOINTERNET
Dim sURL As String
Dim PostData As String
'sURL = "https://fcm.googleapis.com/fcm/send"
sURL = "https://fcm.googleapis.com/v1/projects/notifiche-da-studio/messages:send"
Dim objXMLHTTP As MSXML2.ServerXMLHTTP
Set objXMLHTTP = New MSXML2.ServerXMLHTTP
PostData = "{""message"":{" & _
"""token"":""" & ToTopics & """," & _
"""notification"":{" & _
"""body"":""" & testonotif & """," & _
"""title"":""" & TITOLO & """," & _
"""image"":""" & IMAGEURL & """" & _
"}}}"
With objXMLHTTP
.Open "POST", sURL, False
.SetRequestHeader "Content-Type", "application/json"
.SetRequestHeader "Authorization", strHeaders
.Send (PostData)
End With
Response = objXMLHTTP.ResponseText
freeappo = FreeFile
Open "c:\infostudio\notifica.txt" For Output As #freeappo
Write #freeappo, objXMLHTTP.ResponseText
Close #freeappo
Exit Sub
NOINTERNET:
DoCmd.Hourglass False
MsgBox "CONTROLLARE LA CONNESSIONE AD INTERNET " & err.Description, vbCritical
End Sub
I tried to put this unicode 😀 in Body of PostDATA but not work
PostDATA="{""message"":{""token"":""eOvp_BlbQSWIiklmR5kKX5:APA....................................................h2PYqHDhPUhB3KMI9wAYrWnZIWDUw6Z9TnPVHGBmL-VjRyrZtk3AofJ-GkI83-XUfqz1PJ7rpj67ZRX-rey35Opn4p_ifx-cI"",""notification"":{""body"":""😀"",""title"":""LE ANNOTAZIONI DI DOMANI"",""image"":""http://www.xxxxxxxxx.net/img/note4.png""}}}"
Last edited: