I am using push sharp library to send notification to IOS devices.
I am using this class PushNotificationService
I have registres the events that will fire after the call back is received from APNS.
pushBroker.OnNotificationSent += OnNotificationSent;
pushBroker.OnNotificationFailed += OnNotificationFailed;
// Note for apple a notification is either successful or failed
pushBroker.OnDeviceSubscriptionExpired += OnDeviceSubscriptionExpired;
pushBroker.OnDeviceSubscriptionChanged += OnDeviceSubscriptionChanged;
pushBroker.OnChannelException += OnChannelException;
pushBroker.OnChannelCreated += OnChannelCreated;
pushBroker.OnChannelDestroyed += OnChannelDestroyed;
pushBroker.OnServiceException += OnServiceException;
When I am sending the notification, this event (OnNotificationSent) is fired
I am logging the response from APNS.
I am reviving this response :
Succeed Device ID
However the notification has not reached my device ?
Any reason ?