Does FCM send push notification dicrectly or it sends message to APNS?
A

1

10

As per the Apple documentation, every push notification always traverse through the APNS server. I have heard somewhere that FCM directly sends push notification directly to the device i.e. without contacting to the APNS server.

If ultimately APNS is responsible to send push notification, then why we should use FCM for iOS ?

enter image description here

Axenic answered 28/5, 2018 at 9:32 Comment(2)
Yes, No one can send push except APNSGodoy
Thanks @SPatel..Axenic
R
5

The idea behind using Firebase Cloud Messaging to deliver push notifications to both Android and iOS devices is that implementing one server-side interface that sends all your push notifications (regardless of the platform) to one end-point should require less effort than implementing 2 server-side interfaces each sending to a different end-point and implementing a different API.

This is true regardless of whether or not FCM forwards the iOS messages to APNS or delivers them directly to the iOS devices.

Redvers answered 28/5, 2018 at 9:36 Comment(3)
That is true Eran, but I am very curious to know whether it sends through APNS or directly ?Axenic
@Axenic based on what I read, FCM uses APNS to deliver the messages.Redvers
No PNS provider delivers messages directly to devices, they all go through APNS (in case of iOS). There is no way around this.Min

© 2022 - 2024 — McMap. All rights reserved.