Firebase Cloud Messaging

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?

1 Like

Anyone managed to get the Firebase Cloud Messaging API (V1) working?

Using this url , “https://fcm.googleapis.com/v1/projects/{project_id}/messages:send
But no success.