web-dev-qa-db-ja.com

Android / Firebase-GCMイベントのタイムスタンプの解析中にエラーが発生しました-NULLタイムスタンプ

プッシュ通知を受信するAndroidアプリを作成しています。 Firebase Cloud Messagingのセットアップが完了し、次のペイロードを有効なトークンに送信して通知とデータを受信できるようになりました。

URL https://fcm.googleapis.com/fcm/sendを使用

{
 "to":"<valid-token>",
 "notification":{"body":"BODY TEXT","title":"TITLE TEXT","sound":"default"},
 "data":{"message":"This is some data"}
}

私のアプリはそれを正しく受け取り、対処できます。

わずかなシワは、デバッグで次の例外がスローされることです。

Error while parsing timestamp in GCM event
    Java.lang.NumberFormatException: Invalid int: "null"
        at Java.lang.Integer.invalidInt(Integer.Java:138)
        ...

アプリがクラッシュすることはありません。

メインペイロード、通知、データにtimestampアイテムを追加しようとしましたが、timeなどのバリエーションも試してみましたが、例外を取り除くことができません答えが見つからないかもしれません)。

文句を言わないようにタイムスタンプを渡すにはどうすればよいですか?

編集済み:ここに私のonMessageReceivedメソッドがありますが、ここに到達する前に例外がスローされると思います

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    Log.d(TAG, "From: " + remoteMessage.getFrom());

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.d(TAG, "Message data payload: " + remoteMessage.getData());
        //TODO Handle the data
    }

    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
    }
}

事前に感謝、クリス

18
schofs

notificationは明らかにサポートされている要素ですが(Firebase Webドキュメントによると)、例外を取り除く唯一の方法はそれを完全に削除し、dataセクションのみを使用することです。私のアプリで通知を作成します(firebaseに通知を行わせるのではなく)。

このサイトを使用して、通知を発生させる方法を見つけました。 https://www.androidhive.info/2012/10/Android-Push-notifications-using-google-cloud-messaging-gcm-php-and -mysql /

通知は次のようになりました。

    $fields = array("to" => "<valid-token>",
                    "data" => array("data"=>
                                        array(
                                            "message"=>"This is some data",
                                            "title"=>"This is the title",
                                            "is_background"=>false,
                                            "payload"=>array("my-data-item"=>"my-data-value"),
                                            "timestamp"=>date('Y-m-d G:i:s')
                                            )
                                    )
                    );
    ...
    <curl stuff here>
    ...
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

私のonMessageReceivedは次のようになります。

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    Log.d(TAG, "From: " + remoteMessage.getFrom());

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.e(TAG, "Data Payload: " + remoteMessage.getData().toString());

        try {
            JSONObject json = new JSONObject(remoteMessage.getData().toString());
            handleDataMessage(json);
        } catch (Exception e) {
            Log.e(TAG, "Exception: " + e.getMessage());
        }
    }
}

次のようなhandleDataMessageを呼び出します。

private void handleDataMessage(JSONObject json) {
    Log.e(TAG, "Push json: " + json.toString());

    try {
        JSONObject data = json.getJSONObject("data");

        String title = data.getString("title");
        String message = data.getString("message");
        boolean isBackground = data.getBoolean("is_background");
        String timestamp = data.getString("timestamp");
        JSONObject payload = data.getJSONObject("payload");

        // play notification sound
        NotificationUtils notificationUtils = new NotificationUtils(getApplicationContext());
        notificationUtils.playNotificationSound();

        if (!NotificationUtils.isBackgroundRunning(getApplicationContext())) {
            // app is in foreground, broadcast the Push message
            Intent pushNotification = new Intent(ntcAppManager.Push_NOTIFICATION);
            pushNotification.putExtra("message", message);
            LocalBroadcastManager.getInstance(this).sendBroadcast(pushNotification);

        } else {
            // app is in background, show the notification in notification tray
            Intent resultIntent = new Intent(getApplicationContext(), MainActivity.class);
            resultIntent.putExtra("message", message);

            showNotificationMessage(getApplicationContext(), title, message, timestamp, resultIntent);
        }
    } catch (JSONException e) {
        Log.e(TAG, "Json Exception: " + e.getMessage());
    } catch (Exception e) {
        Log.e(TAG, "Exception: " + e.getMessage());
    }
}

次に、showNotificationMessageを呼び出します

/**
 * Showing notification with text only
 */
private void showNotificationMessage(Context context, String title, String message, String timeStamp, Intent intent) {
    notificationUtils = new NotificationUtils(context);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
    notificationUtils.showNotificationMessage(title, message, timeStamp, intent);
}

そしてその後notificationUtils.showNotificationMessage

public void showNotificationMessage(String title, String message, String timeStamp, Intent intent) {
    showNotificationMessage(title, message, timeStamp, intent, null);
}

public void showNotificationMessage(final String title, final String message, final String timeStamp, Intent intent, String imageUrl) {
    // Check for empty Push message
    if (TextUtils.isEmpty(message))
        return;


    // notification icon
    final int icon = R.mipmap.ic_launcher;

    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    final PendingIntent resultPendingIntent =
            PendingIntent.getActivity(
                    mContext,
                    0,
                    intent,
                    PendingIntent.FLAG_CANCEL_CURRENT
            );

    final NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
            mContext);

    final Uri alarmSound = Uri.parse(ContentResolver.SCHEME_Android_RESOURCE
            + "://" + mContext.getPackageName() + "/raw/notification");


    showSmallNotification(mBuilder, icon, title, message, timeStamp, resultPendingIntent, alarmSound);
    playNotificationSound();

}

private void showSmallNotification(NotificationCompat.Builder mBuilder, int icon, String title, String message, String timeStamp, PendingIntent resultPendingIntent, Uri alarmSound) {

    NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();

    inboxStyle.addLine(message);

    Notification notification;
    notification = mBuilder.setSmallIcon(icon).setTicker(title).setWhen(0)
            .setAutoCancel(true)
            .setContentTitle(title)
            .setContentIntent(resultPendingIntent)
            .setSound(alarmSound)
            .setStyle(inboxStyle)
            .setWhen(getTimeMilliSec(timeStamp))
            .setSmallIcon(R.mipmap.ic_launcher)
            .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
            .setContentText(message)
            .build();

    NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(ntcAppManager.NOTIFICATION_ID, notification);
}

上記のリンクの詳細、およびそれは多くの処理ですが、少なくとも例外はなくなり、私は通知を制御しています。

14
schofs

Com.google.firebase:firebase-messagingを17.3.4に更新し、問題がなくなりました。

1
ms7

私の場合、私のエラーは「AndrodManifest.xml」でした

1つのサービスがありません(実際、Androidスタジオのfirebaseアシスタントには許可がありません。:))

元の

<service Android:name=".fcm.MyFirebaseInstanceIDService">
        <intent-filter>
            <action Android:name="com.google.firebase.INSTANCE_ID_EVENT" />
        </intent-filter>
    </service>
</application>

解決

    <service Android:name=".fcm.MyFirebaseInstanceIDService">
        <intent-filter>
            <action Android:name="com.google.firebase.INSTANCE_ID_EVENT" />
        </intent-filter>
    </service>
    <service Android:name=".fcm.MyFirebaseMessagingService">
        <intent-filter>
            <action Android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>
</application>
0
Soo Chun Jung

これと同じエラーに遭遇しました。ペイロードにttl値を追加して解決しました。

{
   "to":"<valid-token>",
   "notification":{"body":"BODY TEXT","title":"TITLE TEXT","sound":"default"},
   "data":{"message":"This is some data"},
   "ttl": 3600
}
0
jkogara

私も同じ問題を抱えていました。通知で「body」パラメーターを設定しただけで、エラーは消えました。

0
Andrey Kabylin

取り替える

 "notification" : {
    "title" : "title !",
    "body" : "body !",
    "sound" : "default"
  },
  "condition" : "'xxx' in topics",
  "priority" : "high",
  "data" : {
....

by(削除通知):

{
  "condition" : "'xxxx' in topics",
  "priority" : "high",
  "data" : {
    "title" : "title ! ",
     "body" : "BODY",
 ......
}

そしてあなたのコードで:置換:

 @Override
        public void onMessageReceived(RemoteMessage remoteMessage) { 
           remoteMessage.getNotification().getTitle();
           remoteMessage.getNotification().getBody();

        }

沿って

@Override
    public void onMessageReceived(RemoteMessage remoteMessage) { 
       remoteMessage.getData().get("title");
       remoteMessage.getData().get("body");

    }
0
abdessamed

以下のフォーマット(通知本体も配列もありません)は、タイムスタンプの例外を修正しました:

{
  "to": "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
  "data":  {
      "message": "message",
      "title": "hello",
  }
}

http://pushtry.com/ で正常にテストされました

長い「eeee ...」を含めた唯一の理由は、トークンの正確なサイズだからです。

0
Gerry

私のために働いたもの:

firebase-messagingだけでなく、すべてのFirebaseライブラリを最新バージョンにアップグレードします。 Android/app/build.gradle ::

dependencies {
    implementation "com.google.firebase:firebase-core:16.0.0"  // upgraded
    implementation "com.google.firebase:firebase-analytics:16.0.0"  // upgraded
    implementation 'com.google.firebase:firebase-messaging:17.3.4'  // upgraded

    // ...

    implementation "com.google.firebase:firebase-invites:16.0.0"  // upgraded

    // ...
}

すべてがバージョン17.xであるわけではありません

0
ledfusion