Reputation: 12053
I have sent push notifications for Windows Phony without certificate. I know there is limit 500 pushes per day.
My question is: 500 pushes is limit per day and per phone or per day and sending application?
For example: I have four mobiles. How many pushes can I max send by my app a day without buy certificate?
Upvotes: 0
Views: 748
Reputation: 1394
By default, the limit is 500 notifications per channel URI per day. So if you have multiple notifications (say Toast and Tile) in your application, you can send 500 of each type. That is 500 of each type of notification per device / user. For example, if you have 100 users of your application and 1 type of notification, you can send up to 50,000 (1 * 500 * 100)
notifications per day. Authenticated notifications are unlimited.
Upvotes: 1
Reputation: 1163
The limit is by subscription and day. By subscription mean by channel URI. So your service can send a max of 500 notifications by device/user, you can take a look at this here and here.
Upvotes: 2