Is there any daily limit for number push notifications (GCM) can be sent to a particular android application user?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
There is a
limit
of1000
notifications
at one go.Assume you have
50000 regids
. You cannot send all50000
together. After the first1000
, you will have to separately select the next1000
and so on.Since GCM moved to firebase now, messaging service is totally free.
https://firebase.google.com/pricing/
You can send Max 1,000 devices per SEND_ID !
Here is original source.
According to the offical document, NO limit.
Doesn't seem there's a set numerical limit, but there are throttling measures in place.
Via: https://developers.google.com/cloud-messaging/server#throttling
Edit/Update:
Just to update, the doc for throttling can now be found in the GCM Advanced Topics: http://www.androiddocs.com/google/gcm/adv.html#throttling
There NOT any daily limit for number push notifications (GCM) but Via Official Source
GCM Advanced Topicsit states thatHope it will Help.