私はfirebase通知を実装しようとしています。しかし、firebase 通知からカスタム データを取得する方法に関するドキュメントを見つけるのに苦労しています。
ただし、カスタムキーを取得する方法はコード内にあります。
FirebaseMessagingService.onMessageReceived
メッセージデータを取得するために使用しています。
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// TODO(developer): Handle FCM messages here.
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
Log.d(TAG, "From: " + remoteMessage.getFrom());
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
}