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代碼如下:
- <?php
- $deviceToken = $_POST['token']; //取得Token
- $body = array(“aps” => array(“alert” => ‘message’, “badge” => 2, “sound”=>’default’)); //推送方式,包含內容和聲音
- $ctx = stream_context_create();
- //如果在Windows的伺服器上,尋找pem路徑會有問題,路徑修改成這樣的方法:
- //$pem = dirname(__FILE__) . ‘/’ . ‘apns-dev.pem’;
- //linux 的伺服器直接寫pem的路徑即可
- stream_context_set_option($ctx, “ssl”, “local_cert”, “apns-dev.pem”);
- $pass = ”123123“;
- stream_context_set_option($ctx, ‘ssl’, ‘passphrase’, $pass);
- //此處有兩個伺服器需要選擇,如果是開發測試用,選擇第二名sandbox的伺服器並使用Dev的pem認證,如果是正是發布,使用Product的pem並選用正式的伺服器
- $fp = stream_socket_client(“ssl://gateway.push.apple.com:2195“, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
- $fp = stream_socket_client(“ssl://gateway.sandbox.push.apple.com:2195″, $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
- if (!$fp) {
- print “Failed to connect $err $errstrn”;
- return;
- }
- print “Connection OK\n”;
- $payload = json_encode($body);
- $msg = chr(0) . pack(“n”,32) . pack(“H*”, str_replace(‘ ‘, ”, $deviceToken)) . pack(“n”,strlen($payload)) . $payload;
- print “sending message :” . $payload . “\n”;
- fwrite($fp, $msg);
- fclose($fp);
- ?>
然後,
到這裡認證已經準備完畢,接下來,我們在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;
}