Android中C2DM的一些查询

发布于 2024-12-14 14:10:51 字数 444 浏览 0 评论 0原文

我目前正在开发一款具有 C2DM 实现的 Android 应用程序,并且我成功地实现了它。但是现在我在向多个设备发送消息时遇到问题。

根据我的理解,以下将是它的处理过程:

  1. 保存注册ID和注册ID。数据库中的authcode(假设在c2dm表中)
  2. 通过循环向c2dm中的所有数据发送消息。

问题是:

每次我启动应用程序时,它都会要求输入reg id &将其发送到服务器,因此如果一台设备注册 10 次,上述循环将失败 9 次 &工作一次&这将使数据库变得非常大而没有用处。

有谁知道当我们想使用我的应用程序和应用程序向所有设备发送消息时服务器端代码是什么(我正在使用 PHP)。我应该如何保存 reg_id &数据库中的授权码。

谢谢

I am currently working on one android application which has C2DM implementation and I successfully implemented it. But Now I have problem in sending message to multiple devices.

As per my understanding following will be process for it:

  1. Save reg id & authcode in database (Suppose in c2dm table)
  2. Send message with a loop to all the data from c2dm.

But problem is:

every time I start application it ask for reg id & send it to server so if one device register 10 times the above loop will fail 9 times & works one time & this will make very large database which is not useful.

Does anyone know to what will be server side code (I am using PHP) when we want to send message to all device using my application & how I should save reg_id & authcode in database.

Thank You

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弄潮 2024-12-21 14:10:51

我的解决方案是,如果 Google 给我一个响应,表明它是无效注册或不再注册,则将我的数据库中的记录标记为已删除。那么对于给定的注册它只会失败一次。

My solution has just been to mark records as deleted in my database if Google gives me a response indicating that it's an invalid registration or no longer registered. Then it only fails once for a given registration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文