如何测试 APNS p12 证书环境 ruby?
How to test the APNS p12 certificate environments ruby?
我正在开发发送推送通知的服务,但我无法判断上传的 apns 证书 p12 是来自沙箱还是来自生产环境。我想测试一下,以避免在上传证书时出现人为错误。
颁发的证书的通用名称告诉您它是来自沙盒还是生产。
生产示例:Apple 生产 IOS 推送服务:your.app.identifier
我的 ruby 技能有点生疏,但应该这样做:
require 'openssl'
raw_cert = OpenSSL::PKCS12.new(File.read(path_to_your_cert), your_pwd) # If you want to read a .p12 cert
cert = OpenSSL::X509::Certificate.new(raw_cert)
cert.subject.start_with?("Apple Production IOS")
另见此处:http://ruby-doc.org/stdlib-2.0.0/libdoc/openssl/rdoc/OpenSSL/X509/Certificate.html
我对 muenzpraeger 建议的代码做了一些修改。
require 'openssl'
# If you want to read a .p12 cert
raw_cert = OpenSSL::PKCS12.new(File.read(path_to_your_cert), your_pwd)
OpenSSL::X509::Certificate.new(raw_cert).subject.to_s.include? "Apple Production"
我正在开发发送推送通知的服务,但我无法判断上传的 apns 证书 p12 是来自沙箱还是来自生产环境。我想测试一下,以避免在上传证书时出现人为错误。
颁发的证书的通用名称告诉您它是来自沙盒还是生产。
生产示例:Apple 生产 IOS 推送服务:your.app.identifier
我的 ruby 技能有点生疏,但应该这样做:
require 'openssl'
raw_cert = OpenSSL::PKCS12.new(File.read(path_to_your_cert), your_pwd) # If you want to read a .p12 cert
cert = OpenSSL::X509::Certificate.new(raw_cert)
cert.subject.start_with?("Apple Production IOS")
另见此处:http://ruby-doc.org/stdlib-2.0.0/libdoc/openssl/rdoc/OpenSSL/X509/Certificate.html
我对 muenzpraeger 建议的代码做了一些修改。
require 'openssl'
# If you want to read a .p12 cert
raw_cert = OpenSSL::PKCS12.new(File.read(path_to_your_cert), your_pwd)
OpenSSL::X509::Certificate.new(raw_cert).subject.to_s.include? "Apple Production"