.net平台推送ios訊息的實現方法_實用技巧

來源:互聯網
上載者:User

本文執行個體講述了.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程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.