Android C2DM 源代码或实现
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.