Post Request:
URL:
https://fcm.googleapis.com/fcm/send
Headers:
Content-Type: application/json
Authorization: key=AAAAAsmF578:APA91b...90f
Body:
{
"to": "fCF...ZFK",
"notification": {
"title": "Foo",
"body": "Bar"
}
}
Response:
However, if I use Firebase Notification composer to send a notification on my Android device using the same FCM token fCF...ZFK
I do receive a notification. What am I doing wrong here in the Postman? I've already tried several answers related to this on SO but didn't quite get any useful answer.