I used postman to make a HTTP request for sending push notification to a topic, I used this body information:
{
"to" : "/topics/mahdi",
"priority" : "high",
"notification" : {
"body" : "This is a Firebase Cloud Messaging Topic Message!",
"title" : "FCM Message2"
}
}
Of course I put the authorization key in the header and the request succeeded and get:
{"message_id":5081280333669625878}
But I did not receive the notification on my iOS device, where is the error please?