Android C2DM 源代码或实现

发布于 2024-12-09 13:14:25 字数 164 浏览 0 评论 0原文

我需要使用 Android C2DM 功能。

然而,限制是不应该有任何数据传出组织网络之外。

服务器端实现是否将数据发送到 Google 服务器?

是否可以选择在封闭网络内实施 C2DM 服务,其中数据不会发送到 Google 服务器?

谢谢, RR

I have a requirment to use Android C2DM functionality.

However, the restriction is that there should be no data that goes outside organization network.

Does the server side implementation send data to Google servers?

Is there an option to implement C2DM service within a closed network, where the data is not sent to Google servers?

Thanks,
RR

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

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

发布评论

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

评论(1

浅语花开 2024-12-16 13:14:25

C2DM 的目的是“通知”设备有新数据可用,然后您的应用程序开始同步(或其他操作,例如显示消息)。
通常,您不使用 C2DM 提交数据(有时称为有效负载)。它仅限于 1024 个字符。
这样,就不会向 Google 发送“公司”数据。

The purpose of C2DM is that you "Notify" the device that new data is available, and then your application is starting a sync (or something else, eg showing a message).
In general you don't submit the data (sometimes called payload) using C2DM. It is limited to 1024 chars only.
This way no "company" data is sent to Google.

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