ios開發:用PHP實現IOS推送

來源:互聯網
上載者:User

 ios推送訊息是個非常有用的功能,許多應用程式都具備了這個功能,成為即時應用的資料流核心.那麼我們怎麼用php為ios做推送服務呢?下面本文章將為您進行詳細講解。

ios訊息推送機制可以參考ios訊息推送機制實現與探討。

首先,需要一個pem的認證,該認證需要與開發時簽名用的一致。 具體產生pem認證方法如下:

1. 登入 iPhone Developer Connection Portal(http://developer.apple.com/iphone/manage/overview/index.action ) 然後點擊 App IDs
2. 建立一個 Apple ID 。萬用字元 ID 不能用於推播通知服務。如,  com.itotem.iphone
3. 點擊Apple ID旁的“Configure”,根據“嚮導” 的步驟產生一個簽名上傳,然後下載產生的許可證。
4. 雙擊.cer檔案將你的 aps_developer_identity.cer 匯入Keychain中。
5. 在Mac上啟動 Keychain助手,然後在login keychain中選擇 Certificates分類。看到一個可擴充選項“Apple Development Push Services”
6. 擴充此選項然後右擊“Apple Development Push Services” > Export “Apple Development Push Services ID123”。儲存為 apns-dev-cert.p12 檔案。
7. 擴充“Apple Development Push Services” 對“Private Key”做同樣操作,儲存為 apns-dev-key.p12 檔案。
8. 通過終端命令將這些檔案轉換為PEM格式:openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns-dev-cert.p12
openssl pkcs12 -nocerts -out apns-dev-key.pem -in apns-dev-key.p12
9. 最後,你需要將鍵和許可檔案合成為apns-dev.pem檔案,此檔案在串連到APNS時需要使用:
cat apns-dev-cert.pem apns-dev-key-noenc.pem > apns-dev.pem

 

PHP代碼如下:

 

  1. <?php
  2. $deviceToken = $_POST['token']; //取得Token
  3. $body = array(“aps” => array(“alert” => ‘message’, “badge” => 2, “sound”=>’default’));  //推送方式,包含內容和聲音
  4. $ctx = stream_context_create();
  5. //如果在Windows的伺服器上,尋找pem路徑會有問題,路徑修改成這樣的方法:
  6. //$pem = dirname(__FILE__) . ‘/’ . ‘apns-dev.pem’;
  7. //linux 的伺服器直接寫pem的路徑即可
  8. stream_context_set_option($ctx, “ssl”, “local_cert”, “apns-dev.pem”);
  9. $pass = ”123123“;
  10. stream_context_set_option($ctx, ‘ssl’, ‘passphrase’, $pass);
  11. //此處有兩個伺服器需要選擇,如果是開發測試用,選擇第二名sandbox的伺服器並使用Dev的pem認證,如果是正是發布,使用Product的pem並選用正式的伺服器
  12. $fp = stream_socket_client(“ssl://gateway.push.apple.com:2195“, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
  13. $fp = stream_socket_client(“ssl://gateway.sandbox.push.apple.com:2195″, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
  14. if (!$fp) {
  15. print “Failed to connect $err $errstrn”;
  16. return;
  17. }
  18. print “Connection OK\n”;
  19. $payload = json_encode($body);
  20. $msg = chr(0) . pack(“n”,32) . pack(“H*”, str_replace(‘ ‘, ”, $deviceToken)) . pack(“n”,strlen($payload)) . $payload;
  21. print “sending message :” . $payload . “\n”;
  22. fwrite($fp, $msg);
  23. fclose($fp);
  24. ?>

 

然後,

到這裡認證已經準備完畢,接下來,我們在xcode中建立一個測試工程,注意設定工程的Bundle Identifier必須與上面建的APP ID 裡的相同


在didFinishLaunchingWithOptions 中加入一下代碼

 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

[self.window makeKeyAndVisible];

 [[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge UIRemoteNotificationTypeSound  UIRemoteNotificationTypeAlert];

    return YES;

}

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)pToken {

    NSLog(@"regisger success:%@", pToken);

}

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{

    UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"推播通知" message:@"資訊" delegate:selfcancelButtonTitle:@"Cancel" otherButtonTitles:nil, nil];

    [alert show];

    [alert release];

}

- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {

    NSLog(@"Regist fail%@",error); 

}

接下來我們訪問http://localhost/push/push.php

ios裝置就會接收到一條推送訊息了

另外去除標記的方法為,在viewDidApper中加入

 

int badge = [UIApplication sharedApplication].applicationIconBadgeNumber;

    if(badge > 0)

    {

        badge--;

        [UIApplication sharedApplication].applicationIconBadgeNumber = badge;

    }



相關文章

聯繫我們

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