Android的推送通知(GCM),有没有每日限制?通知、Android、GCM

2023-09-12 01:14:53 作者:少时不狂何时狂

有没有涨停的数量推送通知(GCM)可以被发送到一个特定的Andr​​oid应用程序的用户?

Is there any daily limit for number push notifications (GCM) can be sent to a particular android application user?

推荐答案

在谷歌取代C2DM与GCM,它们脱掉所有限制。

After Google replaced C2DM with GCM, they took off all limits.

来源:http://developer.android.com/google/gcm/c2dm.html#history

此前GCM(当它仍然被称为C2DM):https://developers.google.com/android/c2dm/#limitations)

Prior to GCM (when it was still called C2DM): https://developers.google.com/android/c2dm/#limitations)

您碰到的GCM文件的唯一限制是这样的:http://developer.android.com/google/gcm/adv.html#lifetime

The only limits you run into the GCM documentation is this: http://developer.android.com/google/gcm/adv.html#lifetime

从上面的链接引用:

注:有多少信息可以存储无极限   溃散。如果达到极限,所有的限制目前为100。   存储的信息将被丢弃。然后,当设备重新上线,它   接收特殊消息,表明该极限为止。该   然后应用程序可以妥善处理的情况下,通常通过   请求完全同步。

Note: There is a limit on how many messages can be stored without collapsing. That limit is currently 100. If the limit is reached, all stored messages are discarded. Then when the device is back online, it receives a special message indicating that the limit was reached. The application can then handle the situation properly, typically by requesting a full sync.

我不知道这是否是相关的,虽然你的问题。

I am not sure if this is relevant to your question though.