web-dev-qa-db-ja.com

FCM onMessageReceivedメソッドからRemoteMessageから値を取得します

移行しましたgcm to fcmプッシュ通知メッセージ。しかし、RemoteMessageで受信したonMesssageReceivedメソッドからバンドルデータを取得する方法。

Old GCM give bundle data onMessageReceiced method but in FCM there is RemoteMessage data.

したがって、通知のすべての値を取得するためにremotemessageを解析する方法を教えてください。

マイペイロール

{
"collapse_key":"score_update",
"priority":"high",
"content_available":true,
"time_to_live":108,
"delay_while_idle":true,
"data": 
{ 
    "message": "Message for new task",
    "time": "6/27/2016 5:24:28 PM"
},
"notification": {
    "sound": "simpleSound.wav",
    "badge": "6",
    "title": "Test app",
    "icon": "myicon",
    "body": "hello 6 app",
    "notification_id" : "1140",
    "notification_type" : 1,
    "notification_message" : "TEST MESSAGE",
    "notification_title" : "APP"
  },
"registration_ids": ["cRz9SJ-gGuo:APA91bFJPX7_d07AR7zY6m9khQro81GmSX-7iXPUaHqqcOT0xNTVsOZ4M1aPtoVloLNq71-aWrMCpIDmX4NhMeDIc08txi6Vc1mht56MItuVDdA4VWrnN2iDwCE8k69-V8eUVeK5ISer"
]
}
22
Jatin Patel

FCMでは、バンドルではなくRemoteMessageを受け取りました。

以下は、データが私のRemoteMessageであるアプリケーションで使用した方法です

int questionId = Integer.parseInt(data.get("questionId").toString());
String questionTitle = data.get("questionTitle").toString();
String userDisplayName = data.get("userDisplayName").toString();
String commentText = data.get("latestComment").toString();

以下は、サーバーから送信している通知データです

{
  "registration_ids": "",
  "data": {
    "questionId": 1,
    "userDisplayName": "Test",
    "questionTitle": "Test",
    "latestComment": "Test"
  }
}

そのため、応答ごとにすべてのフィールドを解析する必要があります。コードをデバッグしたので、RemoteMessageでマップを受け取り、それらのすべてのデータが文字列として送られるため、これらのフィールドを適切なデータ型にキャストします。

27
Drup Desai

これは、ほとんど自己説明的なコードスニペットです。

マップの形式でデータを取得します

public void onMessageReceived(RemoteMessage remoteMessage)
        {
            Log.e("dataChat",remoteMessage.getData().toString());
            try
            {
                Map<String, String> params = remoteMessage.getData();
                JSONObject object = new JSONObject(params);
                Log.e("JSON_OBJECT", object.toString());
          }
       }

データを正しい形式、つまり「データ」キーで送信しているサーバーから確認してください

こちらがデモJsonファイルです

{
  "to": "registration_ids",
  "data": {
    "key": "value",
    "key": "value",
    "key": "value",
    "key": "value"
  }
}
42
Pritish Joshi