I am using APNS Sharp for sending push notification in IOS. I have successfully used that in development environment. But when app is live it no longer working. I have changed the push certificate to the Deployment certificate. And changed the code to point to apple server
push.RegisterAppleService(new ApplePushChannelSettings(true,appleCert, certificatePassword));
I am not getting any error back. But the device is not getting any notifications. Here I am trying to send notification to a single device.
How can I do this properly?
Thanks