不好意思想請問一下關於pashsharp的相關問題
iOS手機端都無法收到Server端送出的訊息
以下是我的程式碼
{
var push = new PushBroker();
var appleCert = System.IO.File.ReadAllBytes(Server.MapPath("~/bin/External/poshsharptest_production.p12"));
push.RegisterAppleService(new ApplePushChannelSettings(true, appleCert, "password"));
push.QueueNotification(
new PushSharp.Apple.AppleNotification()
.ForDeviceToken(registrationid)
.WithAlert("Hello World!")
.WithSound("default")
);
}
是iOS憑證上的問題還是說C#程式碼有問題
煩請各位幫小弟解答了謝謝