iOS蘋果推送功能實現步驟

來源:互聯網
上載者:User

標籤:

1.在鑰匙串裡 匯出推送認證Apple Push notification Services 的 certificate, 命名為cer.p12,放在電腦案頭 ,期間密碼設為123456

2.在鑰匙串裡 匯出推送私密金鑰 Apple Push notification Services 的 private key, 命名為key.p12,放在電腦案頭,期間密碼設為123456

3.開啟控制台程式,使用openssl 將cer.p12及key.p12轉成cer.pem和key.pem

命令如下:

openssl pkcs12 -clcerts -nokeys -out cer.pem -in cer.p12  產生 cer.pem檔案

openssl pkcs12 -nocerts -out key.pem -in key.p12 產生 key.pem檔案

將cer.pem檔案和key.pem檔案給後台即可

 

4.執行命令

cat cer.pem key.pem > ck.pem

產生ck.pem檔案

5.測試sandbox環境, 執行

openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert cer.pem -key key.pem

測試Production環境, 執行

openssl s_client -connect gateway.push.apple.com:2195 -cert cer.pem -key key.pem

 切記發布需要注意的地方,伺服器要修改的內容
  • pem檔案名稱

  • 產生pem檔案的密碼

  • 使用 Production 的地址 (gateway.push.apple.com)

 

[參考連結]

http://jingyan.baidu.com/article/c275f6ba25e94fe33d756719.html

 

 

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.