I'm using Google's Fcm
to send notification to my Android client
I want to open specific screen with Deep Link url eg. example://my.app/products
Here is endpoint to send notification using REST api
https://fcm.googleapis.com/fcm/send
Content-Type: application/json
Authorization: key={SERVER_KEY}
{
"to" : "{Firebase client token}",
"collapse_key" : "type_a",
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification"
"click_action": "example://my.app/products"
}
}
This request sends notification to my specified client, but does not open Deep Link, when clicking on push nothing happens
Is there a way to open Deep Link from Fcm Push ?