When user clicks a Firebase Notification in Android, you can get the following keys
google.sent_time(long)from(string)google.message_id(String)collapse_key(String)
with the following code:
if (getIntent().getExtras() != null) {
for (String key : getIntent().getExtras().keySet()) {
String value = getIntent().getExtras().getString(key);
Log.d(TAG, "Key: " + key + " Value: " + value);
}
}
However, I need to get the Body from the message. Is it possible?