• c#上iOS apns p12文件制作记录 iOS推送证书制件


    前期一些准备工作可参考:http://jingyan.baidu.com/article/7082dc1c6bb86de40a89bd1a.html

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

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

      打开钥匙串访问(钥匙串访问--->证书助理--->从证书颁发机构请求证书...)

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

       如果新下载的生产环境的证书名叫aps.cer,重命名成aps_production.cer就行了,便于兼容下面的命令执行。

      到Identifiers中建一个App IDs,要选择打开Push Notifications功能,建好App IDs后,再到Certificates(证书)里面新建Development和Production对应的推荐证书。

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

      如果没有发现Apple Production iOS Push Services:com.xxx.xxx,那可能用新的名子Apple Push Services:com.xxx.xxx了。

    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.p12和final_push_production.p12文件,把他们放在网站的根目录中就可以了

  • 相关阅读:
    日期格式设置
    ccnet编译后dll被删除
    GridView使用
    项目发布命令
    虚拟内存技术原理和使用方法
    一种可以穿透还原卡和还原软件的代码
    DataList控件也玩分页
    如何在 Windows XP 或 Windows Server 2003 的应用程序开发中实现 URL 验证
    vc 6.0中开发驱动设备程序配置方法
    通过CreateFile来读取磁盘扇区的方法
  • 原文地址:https://www.cnblogs.com/lear/p/5174705.html
Copyright © 2020-2023  润新知