以下是如何从谷歌注册 GCM。我在第二行代码的什么地方放了我的 appid?来想一想,appid是我在Google App Engine上的项目名称吗?
sender 是被授权向应用程序发送消息的帐户的 ID,通常是应用程序开发人员设置的帐户的电子邮件地址。app 是应用程序的 ID,设置了 PendingIntent 以允许注册服务提取应用程序信息。例如:
Intent registrationIntent = new Intent("com.google.android.c2dm.intent.REGISTER");
registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0)); // boilerplate
registrationIntent.putExtra("sender", "someemail@oo.com");
startService(registrationIntent);