I want to send some message using Firebase Cloud Messaging service to all my users who are using the app. I can send data payload to a single or multiple devices using regisration_ids
like this :
{
"data": {
"body":"body",
"my_custom_key" : "215",
"other_key" : true
},
"registration_ids": ["dCmhVkVMmLw:APA91bE5.."]
}
But how do I send data payload to all the users?