zoukankan      html  css  js  c++  java
  • c#上iOS apns p12文件制作记录

    1.在桌面上建一个"apns_p12"文件夹,所有的保存和生成文件都放在这里

    2.从钥匙串中生成CertificateSigningRequest.certSigningRequest

    3.从服务器上下载aps_development.cer和aps_production.cer文件,并导入到本机

    4.从将"系统"钥匙串中“证书”的:Apple Development iOS Push Services:com.xxx.xxx和Apple Production iOS Push Services:com.xxx.xxx两项,拖到“登录”钥匙串中(因为在“系统”中时,无法导出成p12文件)

    5.将以上两项分别,导出p12文件,将设置好密码,命名为:apns_development.p12和apns_Production.p12

    6.打开“终端”命令行工具,输入:

    cd /users/bill/desktop/apns_p12
    openssl x509 -in aps_development.cer -inform der -out push_development.pem
    openssl x509 -in aps_production.cer -inform der -out push_production.pem
    openssl pkcs12 -nocerts -out push_p12_development.pem -in apns_development.p12 //需要输入密码 openssl pkcs12 -nocerts -out push_p12_production.pem -in apns_production.p12 //需要输入密码
    openssl pkcs12 -export -in push_development.pem -inkey push_p12_development.pem -certfile CertificateSigningRequest.certSigningRequest -name "final_push_development" -out final_push_development.p12 //需要输入密码 openssl pkcs12 -export -in push_production.pem -inkey push_p12_production.pem -certfile CertificateSigningRequest.certSigningRequest -name "final_push_production" -out final_push_production.p12 //需要输入密码

    7.最终生成了,final_push_development.p12final_push_production.p12文件,把他们放在网站的根目录中就可以了

  • 相关阅读:
    iphone inline video fragments
    input text focus去掉默认光影
    ios html5 audio 不能自动播放
    跑马灯实现新闻滚动 鼠标放上去停 移开继续滚动
    转:理解WinCE bulid过程
    C语言sendto()函数:经socket传送数据
    WaitForSingleObject用法介绍
    CoInitializeEx()
    转:select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
    setsocketopt()
  • 原文地址:https://www.cnblogs.com/yeagen/p/4277367.html
Copyright © 2011-2022 走看看