Facing push notification issue in iOS 13

Sometime I am not receiving Push notifications in iOS v13.4.1 and v13.5.1 on my App. It does work if I uninstall my app and then reinstall it again. It is working as expected in below iOS v13.4.1.

As per the recommendation from Apple https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns?language=objc, we should use “apns-push-type” parameter in header while requesting push from server to APNS. Wanted to understand if is this because we are not using this parameter in request header causing this issue or something else is causing push notification issue?

Note : We are using PushSharp v4.0.10 library to send request to APNS from server side.
Answered by lmDeveloper1 in 612582022
Hello Vikram,

I know this is probably not the answer to your question but as a fellow previous user of PushSharp,(worked great!) Apple is eliminating the binary method of sending push notifications in November 2020, I would suggest looking into a new service that uses the JWT token or Certificate based auth to the new APNS api.
Accepted Answer
Hello Vikram,

I know this is probably not the answer to your question but as a fellow previous user of PushSharp,(worked great!) Apple is eliminating the binary method of sending push notifications in November 2020, I would suggest looking into a new service that uses the JWT token or Certificate based auth to the new APNS api.
Facing push notification issue in iOS 13
 
 
Q