我正在尝试通过GCM向我的Android设备发送推送消息,我已在调试模式下将其本地连接到我的桌面。我可以在GCM注册并获得注册ID。但是,当我从服务器向GCM发送消息时,它从未到达我的设备。任何想法在这里缺少什么?
以下是我用来将消息发送给GCM的C#代码:
wc.Headers.Add("Authorization", "key=" + senderAuthToken);
var nameValues = new NameValueCollection
{
{"registration_id", registrationId},
{"collapse_key", Guid.NewGuid().ToString()},
{"data.payload", HttpUtility.UrlEncode(message)}
};
var resp = wc.UploadValues("https://android.googleapis.com/gcm/send", nameValues);
var respMessage = Encoding.Default.GetString(resp);
这是我从GCM回复的回复:
ID = 0:1345244000449737%276b04adef6fbb69
因此看起来消息正在进行身份验证并在GCM中排队等待。
这是我的AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fiserv.mobile.poc"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="15" />
<permission android:name="fiserv.mobile.poc.permission.C2D_MESSAGE"
android:protectionLevel="signature"/>
<uses-permission android:name="fiserv.mobile.poc.permission.C2D_MESSAGE" />
<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- GCM connects to Google Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="fiserv.mobile.poc" />
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
</application>
这是我的GCMIntentService.java服务:
package fiserv.mobile.poc;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import com.google.android.gcm.GCMBaseIntentService;
public class GCMIntentService extends GCMBaseIntentService {
@Override
protected void onError(Context arg0, String arg1) {
Log.e("Registration", "Got an error!");
Log.e("Registration", arg0.toString() + arg1.toString());
}
@Override
protected void onMessage(Context arg0, Intent arg1) {
Log.i("Registration", "Got a message!");
}
@Override
protected void onRegistered(Context arg0, String arg1) {
Log.i("Registration", "Just registered!");
Log.i("Registration", arg0.toString() + arg1.toString());
}
@Override
protected void onUnregistered(Context arg0, String arg1) {
}
}
最后这是我的MainActivity.java:
package fiserv.mobile.poc;
import fiserv.mobile.poc.R;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import com.google.android.gcm.GCMRegistrar;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
RegisterWithGCM();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
private void RegisterWithGCM()
{
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
} else {
Log.v("Registration", "Already registered, regId: " + regId);
}
}
String SENDER_ID = "158778556981";
}
当我向GCM注册时,我可以看到日志语句,但是我从未点击onMessage
或看到日志语句“收到消息!”,无论我发送给GCM的消息有多少。我已经验证我使用的服务密钥与我在Android应用程序中使用的“发件人ID”相匹配。
为什么没有传递消息的任何想法?
答案 0 :(得分:3)
您必须将Google帐户登录到您的设备。我没有收到通知的原因是因为我在开始测试GMC之前更改了我的Google(Gmail)密码。更新密码后,我开始在设备上收到通知。
在Android 2.2上,设置&gt;中没有“更新密码”按钮。帐户部分。我不得不去Play应用程序然后尝试下载应用程序,然后它要求输入新密码。