11

我需要一个用于 Google Cloud 消息传递的示例应用程序。使用示例服务器来测试我的应用程序。谁可以帮我这个事?

我需要一个示例服务器来测试我的代码我已经编写了代码但我不知道它是否会工作。我不知道服务器端编码,所以任何人都可以帮助我。这是我的代码

意向服务

package com.example.pushnotificationsample;

import android.content.Context;

public class GCMIntentService extends GCMBaseIntentService {

protected GCMIntentService(String senderId) {
    super(senderId);
    // TODO Auto-generated constructor stub
}

@Override
protected void onError(Context arg0, String arg1) {
    // TODO Auto-generated method stub
}

@Override
protected void onMessage(Context arg0, Intent msgIntent) {
    // TODO Auto-generated method stub
    Log.d("GCM", "RECIEVED A MESSAGE");
  //        String msg=msgIntent.getStringExtra("Message");
    Log.d("GCM", msgIntent.toString());
    // Get the data from intent and send to notificaion bar

}

@Override
protected void onRegistered(Context arg0, String arg1) {
    // TODO Auto-generated method stub
}

@Override
protected void onUnregistered(Context arg0, String arg1) {
    // TODO Auto-generated method stub
}
}

我的主要活动

package com.example.pushnotificationsample;

import android.app.Activity;
import com.google.android.gcm.GCMRegistrar;
import android.os.Bundle;
import android.util.Log;

public class MainActivity  extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    GCMRegistrar.checkDevice(this);
   // GCMRegistrar.checkManifest(this);
    final String regId = GCMRegistrar.getRegistrationId(this);
    if (regId.equals("")) {
      GCMRegistrar.register(this, "555817657362");
      Log.v("Msg", "registered");
    } else {
      Log.v("Msg", "Already registered");
    }
}


}
4

4 回答 4

23

您需要通过 Android SDK 下载。转到Window->Android SDK Manager。向下滚动到额外并检查“Google Cloud Messaging”并安装。

完成后,您可以查看:android-sdk/extras/google/gcm/samples

或者你可以试试这个(我自己上传了):gcm

对于服务器端,请检查此答案:https ://stackoverflow.com/a/11253231/554740

于 2012-09-15T12:53:41.120 回答
6

“curl”命令行工具可用于向注册了 GCM 的设备发送消息。

curl -X POST \
  -H "Authorization: key= <YOUR_AUTHORIZATION_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "registration_ids": [
    "<YOUR_DEVICE_TOKEN>"
  ],
  "data": {
    "message": "<YOUR_MESSAGE>"
  }
}' \
  https://android.googleapis.com/gcm/send

有关详细信息,请参阅此博客文章。 http://www.zinniakhan.com/2014/07/check-google-cloud-messaging-gcm-client.html

于 2014-07-22T01:22:01.213 回答
5

我们在 GitHub 上有一个示例客户端:https ://github.com/indigorose/airbop-client (基于 GCM 客户端示例),它与我们基于 GCM 的服务 AirBop 一起使用:http ://www.airbop.com您可以免费测试。

于 2012-11-30T16:26:24.103 回答
4

我在这里找到了一个适用于 Windows 的开源发件人客户端:https ://gcm.codeplex.com/

  • 在您实施 GCM 注册代码并通过您的客户端应用程序检索您的注册 ID 后,可以找到设备令牌(设置断点或打印语句,以便您能够复制/粘贴此值,它很长)
  • 在 Google 的开发者控制台中设置项目后,会找到 Auth 密钥

截屏

于 2014-04-03T21:19:10.637 回答