Невозможно интерпретировать сообщение от GCM

Я пытаюсь понять, как работает GCM. Для этого я копирую / вставляю код, который http://developer.android.com/ предлагает в разделе "реализация клиента GCM".

На данный момент у меня нет сервера, поэтому я отправляю из затмения только HTTP-запрос.

Вот запрос:

HttpEntity entity = new ByteArrayEntity(contenu.getBytes("UTF-8"));
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(this.getAdresse());
    post.addHeader("Authorization", "key=AIzaSyANnvuPYJaSIDM7gorqdKh25uvpNA-4rvk");
    post.addHeader("Content-Type", "application/json");
    post.setEntity(entity);

    HttpResponse response = client.execute(post);

где "contenu" это строка:

{ "data": {
"message":"hello"
  },
  "registration_ids": ["4", "8", "15", "16", "23", "42"]
}

В моем клиентском приложении у меня есть этот IntentService (находится на сайте разработчиков):

package com.test.testnotification3;

 import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.test.testnotification3.R;

import core.GcmBroadcastReceiver;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.SystemClock;
import android.support.v4.app.NotificationCompat;
import android.util.Log;

public class GcmIntentService extends IntentService {
public static final int NOTIFICATION_ID = 1;
private NotificationManager mNotificationManager;
NotificationCompat.Builder builder;
static final String TAG = "GCMDemo";

public GcmIntentService() {
    super("GcmIntentService");
}

@Override
protected void onHandleIntent(Intent intent) {
    Bundle extras = intent.getExtras();
    GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);

    // The getMessageType() intent parameter must be the intent you received
    // in your BroadcastReceiver.
    String messageType = gcm.getMessageType(intent);



    if (!extras.isEmpty()) {  // has effect of unparcelling Bundle
        /*
         * Filter messages based on message type. Since it is likely that GCM
         * will be extended in the future with new message types, just ignore
         * any message types you're not interested in, or that you don't
         * recognize.
         */
        if (GoogleCloudMessaging.
                MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
            sendNotification("Send error: " + extras.toString());
        } else if (GoogleCloudMessaging.
                MESSAGE_TYPE_DELETED.equals(messageType)) {
            sendNotification("Deleted messages on server: " +
                    extras.toString());
            // If it's a regular GCM message, do some work.
        } else if (GoogleCloudMessaging.
                MESSAGE_TYPE_MESSAGE.equals(messageType)) {



            Log.i(TAG, "Completed work @ " + SystemClock.elapsedRealtime());
            // Post notification of received message.
            sendNotification("Received: " + extras.toString());
            Log.i(TAG, "Received: " + extras.toString());
        }
    }
    // Release the wake lock provided by the WakefulBroadcastReceiver.
    GcmBroadcastReceiver.completeWakefulIntent(intent);
}

// Put the message into a notification and post it.
// This is just one simple example of what you might choose to do with
// a GCM message.
public void sendNotification(String msg) {
    mNotificationManager = (NotificationManager)
            this.getSystemService(Context.NOTIFICATION_SERVICE);

    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, MainActivity.class), 0);
    long[] pattern = {0,1000};

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
    .setSmallIcon(R.drawable.ic_launcher)
    .setContentTitle("Coucou Matthieu")
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(msg))
    .setContentText(msg)
    .setVibrate(pattern);

    mBuilder.setContentIntent(contentIntent);
    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }
}

И я получил это сообщение в моем Logcat:

07-06 19:26:15.627: I/GCMDemo(5095): Received: Bundle[{msg=hello,     android.support.content.wakelockid=1, collapse_key=do_not_collapse, from=472226063168}]

Итак, мой вопрос: как я могу получить только поле "msg"?

Спасибо за ответ)!

1 ответ

Решение

Вы можете получить данные из Bundle связано с Intent, В этом случае, так как это строка, которую вы можете вызвать getString() передавая правильный ключ ("msg"):

Bundle extras = intent.getExtras();
String msg = extras.getString("msg");

Вы можете сделать это в ветке, где вы знаете, что сообщение GCM имеет тип сообщения:

Bundle extras = intent.getExtras();

...

} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
  String msg = extras.getString("msg");
  // Do something with msg
}
Другие вопросы по тегам