You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public Collection<EnhancedApnsNotification> push(Collection<String> deviceTokens, String payload);
It's not actually sending to multiple devices at once. The method implementation loops through the deviceTokens and send the push notification one by one.
it seems apple does not allow sending to multiple devices in a single request.
Also from above link:
When sending many remote notifications, you can establish multiple connections to these servers to improve performance. For example, if you have multiple provider servers, each one can establish its own connection.
Is there any way to send multiple notification without using loop. Like firebase's "registration_ids" ?
The text was updated successfully, but these errors were encountered: