解析推送收件人限制

parse push recipient limit

我想为我的应用程序使用解析推送通知。但我有一些问题:

1- 一个月的最大通知数量是多少?在 parse.com 中,他们说“1.000.000 个唯一收件人是免费的”。有这样的限制吗:"you cans send maximum 10.000.000 notifications in a month"?

2- 一个解析推送通知请求(来自 parse.com 或来自解析 REST API)的最大收件人数量是多少?像这样的通知是否有任何限制:"you can send a notification up to XXX users with one request"?例如我的应用程序被 10 万用户下载。我可以通过一个请求向所有 10 万用户发送通知吗?所有通知是否同时发送给所有用户?

3- 我通过一个 API 请求向 5000 名用户发送通知。它算作一个请求还是多个请求?如果我使用查询,例如 "send a notification to users which have a car and an iphone" ,它算作一个请求还是多个请求?

谢谢。

使用 parse 的基本免费计划,您可以同时向 1.000.000 个唯一标识符发送推送通知。请看一下 this link。 但请注意,推送可能不会完全同时到达,它们可能相隔几秒钟,尤其是。对于这么大的数字。

其次,是的,这算作一个 API 请求,因为您有效地调用了他们的服务器一次。但是,如果您在发送推送之前进行了一些查询(单独的查询,没有使用推送请求进行的复杂查询),它们也将算作一个单独的 API 请求。

编辑: 如果您要求用户按代码向其发送通知,您可能会受到每个 PFQuery 1.000 个结果的一般限制。

这是 Parse 解释唯一收件人的方式。

How does Parse define 'unique recipients' for push notification pricing? 'Unique recipients' is the number of distinct devices a push notification is sent to in a given month. If a particular device receives multiple push notifications in a month, that only counts as one 'unique recipient'. If a particular user owns multiple devices, and a push notification is sent to each of these devices, that will count as multiple 'unique recipients'.