本文實例講述了.net平臺推送ios消息的實現(xiàn)方法。分享給大家供大家參考。
具體實現(xiàn)步驟如下:
1、ios應用程序中允許向客戶推送消息
2、需要有蘋果的證書以及密碼(怎么獲取,網(wǎng)上搜一下,需要交費的)
3、iphone手機一部,安裝了該ios應用程序
4、.net 項目中引用PushSharp.Apple.dll,PushSharp.Core.dll(這兩個文件在網(wǎng)上搜一下,有源碼的)
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 獲取推送的消息內(nèi)容...
Log.Error("推送內(nèi)容"+n.Payload.Alert.Body);
}
static void pusher_OnDeviceSubscriptionExpired(object sender, string expiredSubscriptionId, DateTime expirationDateUtc, INotification notification)
{
// 從數(shù)據(jù)庫刪除過期的expiredSubscriptionId
}
static void pusher_OnDeviceSubscriptionChanged(object sender, string oldSubscriptionId, string newSubscriptionId, INotification notification)
{
// 把數(shù)據(jù)庫中的oldSubscriptionId更新為newSubscriptionId
}
startApp()方法中有兩個參數(shù):
CertificatePath:證書的路徑
CertificatePassword:密碼
7、推送代碼:
代碼如下:pusher.QueueNotification(new AppleNotification().ForDeviceToken(TokenID) .WithAlert("推送的內(nèi)容").WithBadge(1).WithSound("default"));// 從數(shù)據(jù)庫或者其他等地方獲取設備的TokenID,每個iphone一個TokenID
8、準備好這些以后就可以測試,本人親自測試通過,如果有什么不明白的地方歡迎留言交流!
9、如果想在Android設備上推送,項目要引進PushSharp.Android.dll,代碼的話后期會為大家更新,敬請關注!
10、完整實例代碼點擊此處本站下載。
希望本文所述對大家的.net程序設計有所幫助。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com