我知道这可能是由于缺乏更好的知识,但我似乎无法让这种情况发生。
到目前为止,如何为pem
创建正确的证书/ PyAPN
文件的正确方法是什么?在不同的日期有很多指示报告不同的方法 - 我很困惑。
我将Apple推送证书和私钥分别导出到我的mac上的cert.p12
和key.p12
。然后我运行下面的命令并将它们上传到我的服务器。
openssl pkcs12 -nocerts -out key.pem -in key.p12
openssl pkcs12 -clcerts -nokeys -out cert.pem -in cert.p12
这是我修改后的apns-send.py
:
certificate_file = '/path/to/apnsCerts/cert.pem'
key_file = '/path/to/apnsCerts/key.pem'`
我试试:
./apns-send.py -p fc0112d3936f738d9d4c197c50dbf80304ab13fca4ab19d539ecacf65ce58b34 -m 'Hello World'
然而它失败了:
Traceback (most recent call last):
File "./apns-send.py", line 45, in <module>
apns.gateway_server.send_notification(options.push_token, payload)
File "/buyo/push/ios/apns.py", line 543, in send_notification
self.write(self._get_notification(token_hex, payload))
File "/buyo/push/ios/apns.py", line 267, in write
return self._connection().write(string)
File "/buyo/push/ios/apns.py", line 248, in _connection
self._connect()
File "/buyo/push/ios/apns.py", line 224, in _connect
self._ssl = wrap_socket(self._socket, self.key_file, self.cert_file)
File "/usr/lib/python2.7/ssl.py", line 487, in wrap_socket
ciphers=ciphers)
File "/usr/lib/python2.7/ssl.py", line 241, in __init__
ciphers)
ssl.SSLError: [Errno 336265218] _ssl.c:355: error:140B0002:SSL routines:SSL_CTX_use_PrivateKey_file:system lib
我感谢任何可能失败的帮助或建议。提前谢谢!
答案 0 :(得分:1)
好的,经过一些谷歌搜索,试用和错误后,我终于通过Sent push message to APNS gateway
收到了发送确认PyAPNs
。
以下是我必须调整pem
文件的步骤。
openssl pkcs12 -in cert.p12 -out cert.pem -clcerts -nokeys
openssl pkcs12 -in key.p12 -out key.pem -nocerts
openssl rsa -in key.pem -out keyNoPasswd.pem
cat keyNoPasswd.pem > mergedPushCertificate.pem
cat cert.pem >> mergedPushCertificate.pem
在PyAPNs中使用mergedPushCertificate.pem
作为证书和密钥。
基于https://github.com/project-imas/mdm-server/issues/6