Ajad Patel

Ajad Patel

  • NA
  • 69
  • 556

Send notification on ios

Apr 24 2017 6:52 AM
Hello I am usign this code.which i mention below.but i am getting error:
 
 

Specified argument was out of the range of valid values.
Parameter name: Your Certificate is not a valid certificate for connecting to Apple's APNS servers

 
 
My Code:
// Configuration (NOTE: .pfx can also be used here)
var config = new ApnsConfiguration(ApnsConfiguration.ApnsServerEnvironment.Sandbox,
Server.MapPath("Bobl.p12"), "dipak12");
// Create a new broker
var apnsBroker = new ApnsServiceBroker(config);
// Wire up events
apnsBroker.OnNotificationFailed += (notification, aggregateEx) =>
{
aggregateEx.Handle(ex =>
{
// See what kind of exception it was to further diagnose
if (ex is ApnsNotificationException)
{
var notificationException = (ApnsNotificationException)ex;
// Deal with the failed notification
var apnsNotification = notificationException.Notification;
var statusCode = notificationException.ErrorStatusCode;
Console.WriteLine("Apple Notification Failed: ID={apnsNotification.Identifier}, Code={statusCode}");
}
else
{
// Inner exception might hold more useful information like an ApnsConnectionException
Console.WriteLine("Apple Notification Failed for some unknown reason : {ex.InnerException}");
}
// Mark it as handled
return true;
});
};
apnsBroker.OnNotificationSucceeded += (notification) =>
{
Console.WriteLine("Apple Notification Sent!");
};
// Start the broker
apnsBroker.Start();
//foreach (var deviceToken in MY_DEVICE_TOKENS) {
// Queue a notification to send
apnsBroker.QueueNotification(new ApnsNotification
{
DeviceToken = "f30cb6b2c1d93da1049903ab32043423de5832898d8a92c26eec7b68892a3258",
Payload = JObject.Parse("{\"aps\":{\"badge\":7}}")
});
//}
// Stop the broker, wait for it to finish
// This isn't done after every message, but after you're
// done with the broker
apnsBroker.Stop();
 

Answers (3)