本文執行個體講述了.net平台推送ios訊息的實現方法。分享給大家供大家參考。
具體實現步驟如下:
1、ios應用程式中允許向客戶推送訊息
2、需要有蘋果的認證以及密碼(怎麼擷取,網上搜一下,需要交費的)
3、iphone手機一部,安裝了該ios應用程式
4、.net 項目中引用PushSharp.Apple.dll,PushSharp.Core.dll(這兩個檔案在網上搜一下,有源碼的)
5、開始寫代碼,定義全域的對象PushBroker pusher = new PushBroker();
6、註冊方法:
複製代碼 代碼如下:
protected void startApp()
{
pusher.RegisterAppleService(new ApplePushChannelSettings(File.ReadAllBytes(CertificatePath), CertificatePassword));
pusher.OnDeviceSubscriptionChanged += pusher_OnDeviceSubscriptionChanged;
pusher.OnDeviceSubscriptionExpired += pusher_OnDeviceSubscriptionExpired;
pusher.OnNotificationSent += pusher_OnNotificationSent;
pusher.OnNotificationFailed += pusher_OnNotificationFailed;
}
static void pusher_OnNotificationFailed(object sender, INotification notification, Exception error)
{
var n = (AppleNotification)notification;
//error.Message ...擷取推送出錯的資訊
Log.Error("推送出錯的資訊", error);
}
static void pusher_OnNotificationSent(object sender, INotification notification)
{
//訊息推送成功後
var n = (AppleNotification)notification;
//n.Payload.Alert.Body 擷取推送的訊息內容...
Log.Error("推送內容"+n.Payload.Alert.Body);
}
static void pusher_OnDeviceSubscriptionExpired(object sender, string expiredSubscriptionId, DateTime expirationDateUtc, INotification notification)
{
// 從資料庫刪除到期的expiredSubscriptionId
}
static void pusher_OnDeviceSubscriptionChanged(object sender, string oldSubscriptionId, string newSubscriptionId, INotification notification)
{
// 把資料庫中的oldSubscriptionId更新為newSubscriptionId
}
startApp()方法中有兩個參數:
CertificatePath:認證的路徑
CertificatePassword:密碼
7、推送代碼:
複製代碼 代碼如下:
pusher.QueueNotification(new AppleNotification().ForDeviceToken(TokenID) .WithAlert("推送的內容").WithBadge(1).WithSound("default"));// 從資料庫或者其他等地方擷取裝置的TokenID,每個iphone一個TokenID
8、準備好這些以後就可以測試,本人親自測試通過,如果有什麼不明白的地方歡迎留言交流!
9、如果想在Android裝置上推送,項目要引進PushSharp.Android.dll,代碼的話後期會為大家更新,敬請關注!
10、完整執行個體代碼點擊此處本站下載。
希望本文所述對大家的.net程式設計有所協助。