ios訊息推送機制原理與實現)

來源:互聯網
上載者:User

今天給無線事業部的同事開發蘋果用戶端的推送介面。無線事業部就是我們公司專門開發各種終端的app的部門啦!

無線事業部的同事做事還是很體貼的,同時發給了我參考文檔地址和需要的開發需要的pl2檔案。

提供的文檔裡詳細描述了推送原理以及相關申請的步驟和部分cocoa和.net程式碼片段,還提供開源的.net類庫。非常感謝無線事業部的同事啦,o(∩_∩)o 哈哈

提供的文檔地址:http://hi.baidu.com/yang_qi168/item/480304c542fd246489ad9e91

原文內容如下:

Push的原理:

Push 的工作機制可以簡單的概括為

圖中,Provider是指某個iPhone軟體的Push伺服器,這篇文章我將使用.net作為Provider。

APNS 是Apple Push Notification Service(Apple Push伺服器)的縮寫,是蘋果的伺服器。

可以分為三個階段。

第一階段:.net應用程式把要發送的訊息、目的iPhone的標識打包,發給APNS。 

第二階段:APNS在自身的登入Push服務的iPhone列表中,尋找有相應標識的iPhone,並把訊息發到iPhone。 

第三階段:iPhone把發來的訊息傳遞給相應的應用程式, 並且按照設定彈出Push通知。

 

從我們可以看到。

 

1、首先是應用程式註冊訊息推送。

2、 IOS跟APNS Server要deviceToken。應用程式接受deviceToken。

3、應用程式將deviceToken發送給PUSH服務端程式。

4、 服務端程式向APNS服務發送訊息。

5、APNS服務將訊息發送給iPhone應用程式。

無論是iPhone用戶端跟APNS,還是Provider和APNS都需要通過認證進行串連的。下面我介紹一下幾種用到的認證。

幾種認證:

一、*.certSigningRequest檔案

1、產生Certificate Signing Request (CSR):

 

2、填寫你的郵箱和Common Name,這裡填寫為PushChat。選擇儲存到硬碟。

 

這樣就在本地產生了一個PushChat.certSigningRequest檔案。

二、產生*.p12檔案

1、匯出密鑰,並輸入你的密碼。

 

輸入你的密碼:

 

這樣就產生了一個PushChatKey.p12檔案。

三、建立一個App ID 和SSL certificate檔案

1、用你的付過費的apple帳號登入到iOS Provisioning Portal。建立一個App ID。

Description:中輸入PushChat

Bundle Seed ID:預設選擇Generate New 

Bundle Identifier:輸入com.mysoft.PushChat

點擊提交

 

這樣就會產生下面這條記錄:

 

點擊配置:

出現下面介面,點擊繼續:

 

這裡我們選擇前面產生好的PushChat.certSigningRequest檔案,點擊產生。

 

正在產生

 

產生完畢,我們把它下載下來。命名為aps_developer_identity.cer。

 

點擊完成,你會發現狀態變成Enabled。

 

到現在為止,我們已經產生了3個檔案。

1、PushChat.certSigningRequest

2、PushChatKey.p12

3、aps_developer_identity.cer

現在我們建立一個簡單的iPhone應用程式。

1、開啟Xcode,選擇建立一個View-based Application。命名如:

 

2、在PushChatAppDelegate中的didFinishLaunchingWithOptions方法中加入下面代碼:

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];

// Let the device know we want to receive push notifications[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
returnYES;

通過registerForRemoteNotificationTypes方法,告訴應用程式,能接受push來的通知。

3、在xcode中運行,會彈出下面的提示框:

 

選擇OK。表示此應用程式開啟訊息通知服務。

在 PushChatAppDelegate.m代碼中添加下面方法擷取deviceToken:

- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@"My token is: %@", deviceToken);
}

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Failed to get token, error: %@", error);

擷取到的deviceToken,我們可以通過webservice服務提交給.net應用程式,這裡我簡單處理,直接列印出來,拷貝到.net應用環境中使用。

發送通知的.net應用程式出來需要知道deviceToken之外,還需要一個與APNS串連的認證。

這個認證可以通過我們前面產生的兩個檔案中得到。

使用OpenSSL

1、將aps_developer_identity.cer轉換成 aps_developer_identity.pem格式。

openssl x509 -in aps_developer_identity.cer -inform DER -out aps_developer_identity.pem -outform PEM

2、將p12格式的私密金鑰轉換成pem,需要設定4次密碼,密碼都設定為:abc123。

openssl pkcs12 -nocerts -out PushChat_Noenc.pem -in PushChat.p12

3、用certificate和the key 建立PKCS#12格式的檔案。

openssl pkcs12 -export -in aps_developer_identity.pem -inkey PushChat_Noenc.pem -certfile PushChat.certSigningRequest -name "aps_developer_identity" -out aps_developer_identity.p12

這樣我們就得到了在.net應用程式中使用的認證檔案:aps_developer_identity.p12。

在.net應用程式中發送通知。

有個開源的類庫:apns-sharp。

地址是:http://code.google.com/p/apns-sharp/。

我們下載原始碼,對裡面的JdSoft.Apple.Apns.Notifications做相應的調整就能用了。

我們根據DeviceToken和p12File對JdSoft.Apple.Apns.Notifications.Test做相應的調整,如。

 

這樣就OK了。

效果:

通知的代碼:

 

for(inti = 1; i <= count; i++)
{
//Create a new notification to send
Notification alertNotification = newNotification(testDeviceToken);

alertNotification.Payload.Alert.Body = string.Format("Testing {0}...", i);
alertNotification.Payload.Sound = "default";
alertNotification.Payload.Badge = i;

//Queue the notification to be sent
if(service.QueueNotification(alertNotification))
Console.WriteLine("Notification Queued!");
else
Console.WriteLine("Notification Failed to be Queued!");

//Sleep in between each message
if(i < count)
{
Console.WriteLine("Sleeping "+ sleepBetweenNotifications + " milliseconds before next Notification...");
System.Threading.Thread.Sleep(sleepBetweenNotifications);
}
}

 

用手機拍的ipad上面的顯示:

 

 

總結:這篇文章主要是詳細的講述了ios訊息推送機制的實現,如何通過.net應用程式發送訊息給ios應用程式。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.