I know how to send push notification with FCM-TOKEN and with TOPIC name via POSTMAN, but I'm not sure about how to send FCM notification with package name or only to the particular package if my firebase project contains more than 2 apps connected.
{
"to": "/topics/global", // global is your topic
"notification" : {
"body" : "great match!",
"content_available" : true,
"priority" : "high",
"title" : "Portugal vs. Denmark"
},
"data" : {
"body" : "great match!",
"content_available" : true,
"priority" : "high",
"title" : "Portugal vs. Denmark"
}
}