Hello,
Firebase API Cloud Messaging (V1) will no longer be available on 20/06/2024.
I am using this code to send notifications in my app :
local url = "https://fcm.googleapis.com/fcm/send"
local parameters =
{
headers =
{
["Authorization"] = "Key=xxx",
["Content-Type"] = "application/json",
},
body = msgTblJson,
}
network.request (url, "POST", onSendNotification, parameters)
Anyone knows what should be modified to update to the new version of FCM?