0

我正在尝试创建 2 个通过 GCM 服务进行通信的应用程序。假设我正在尝试将字符串从应用程序 A 发送到 B,然后从 B 发送到 A。

我对 GCM 服务非常陌生,我有点困惑。每次看到 myApiCode 时,我都会将原始代码中的它替换为 api 代码。这是 A 代码:

public class MainActivity extends Activity 
{
    private final String myApiKey = "903137756997";
    @Override
    protected 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, "myApiCode");
        } else {
          Log.v("INFORMATION", "Already registered");
        }


    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

这里是 GCMIntentService:

public class GCMIntentService extends GCMBaseIntentService
{
    private final String myApiKey = "903137756997";

    public GCMIntentService()
    {
        super("123");
    }
            ...
    @Override
    protected void onMessage(Context arg0, Intent arg1) 
    {
        Log.d("GCM", "RECIEVED A MESSAGE");
        System.out.println("123123123123");
    }
            ...

}

我附加的代码是应用程序 A,现在我将附加应用程序 B 的代码:

以下代码是从主活动调用的服务:

public void onCreate()
{
    super.onCreate();

    Sender sender = new Sender(myApiKey);
    Message message = new Message.Builder().build();
    Result result = null;
    try {
        result = sender.send(message, "123", 5);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    if (result.getMessageId() != null) {
         String canonicalRegId = result.getCanonicalRegistrationId();
         if (canonicalRegId != null) {
           // same device has more than on registration ID: update database
         }
        } else {
         String error = result.getErrorCodeName();
         if (error.equals(Constants.ERROR_NOT_REGISTERED)) {
           // application has been removed from device - unregister database
         }
        }
}

我不得不提一下,这两个应用程序都在毫无例外地运行,但看起来什么都没有发生。我想我的键做错了,因为我仍然无法理解应用程序 B 将如何找到应用程序 A。

4

1 回答 1

1

您必须覆盖 GCMIntentService 中的 onRegistered 方法。这将在 GCM 服务器返回您调用 GCMRegistrar.register 时提示的注册 ID 时调用。

此方法的实现应将 String 参数上传到您控制的服务器,然后服务器可以发送针对您上传的 ID 的消息。

此外,您不应该以这种方式直接在应用程序之间推送消息,因为它需要您将私有 API 密钥发送到应用程序包中才能发送消息。

于 2013-03-02T09:16:19.047 回答