Android/Firebase - ошибка при анализе метки времени в событии GCM - временная метка

Я создаю приложение для Android, которое будет получать push-уведомления. У меня есть Firebase Cloud Messaging setup и в значительной степени работаю, чтобы я мог отправить следующую полезную нагрузку в действительный токен и получать уведомления и данные.

Использование 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 но, похоже, не может избавиться от исключения (и Google, как я мог бы, я не могу найти ответ).

Как передать временную метку, чтобы она перестала жаловаться?

Отредактировано: Вот мой метод 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());
    }
}

Спасибо заранее, Крис

Ответ 1

Несмотря на то, что notification по-видимому, является поддерживаемым элементом (в соответствии с веб-документами Firebase), единственный способ избавиться от исключения - это полностью удалить его и использовать только раздел data, а затем в моем приложении создать уведомление (скорее чем позволить пожарной базе сделать уведомление).

Я использовал этот сайт для разработки способов уведомления: 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);
}

Более подробно в ссылке выше, и это много обработки, но по крайней мере исключение прошло, и я контролирую уведомления.

Ответ 2

Я столкнулся с этой же ошибкой, я решил, добавив значение ttl в полезную нагрузку.

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

Ответ 3

У меня была такая же проблема, я только что установил параметр body в уведомлении и ошибке.

Ответ 4

Я обновил com.google.firebase: firebase-messaging до 17.3.4, и проблема исчезла.

Ответ 5

Что сработало для меня:

Обновление не только Firebase 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

Ответ 6

Формат ниже (без тела уведомления, и нет никаких массивов) исправил исключение метки времени для меня:

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

Протестировано нормально с http://pushtry.com/

Единственная причина, по которой я включил длинное 'eeee...', заключается в том, что это точный размер моего токена.

Ответ 7

замещать

 "notification" : {
    "title" : "Cet enlèvement a été affecté à un autre chauffeur",
    "body" : "BESSON * . 69256 VAULX EN VELIN",
    "sound" : "default"
  },
  "condition" : "'xxx' in topics",
  "priority" : "high",
  "data" : {
....

от

{
  "condition" : "'xxxx' in topics",
  "priority" : "high",
  "show_in_foreground" : 1,
  "data" : {
    "title" : "Cet enlèvement a été affecté à un autre chauffeur",
     "body" : "BESSON * . 69256 VAULX EN VELIN",
}

Ответ 8

В моем случае моя ошибка была "AndrodManifest.xml"

Я пропускаю один сервис (на самом деле ассистент Firebase Android Studio не хватает моего разрешения. :))

оригинал

<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>