Hi I wish to send push messages to specific client from android app. So far it was successful from postman. But how can I translate post to android app?
I need to send post to: https://fcm.googleapis.com/fcm/send
And this is sample message:
{
"to" : "dLVCgODdwqw:APA91bHz3kb0kyhs0sdf8THHE0DsdfVtHM5Z",
"collapse_key" : "type_a",
"notification" : {
"body" : "Body",
"title": "Title"
},
"data" : {
"body" : "Body of Notification in Data",
"title": "Title of Notification in Title",
"key_1" : "Value for key_1",
"key_2" : "Value for key_2"
}
}