开发者

send push notifications to iphone from python

开发者 https://www.devze.com 2023-03-09 01:37 出处:网络
I am trying to create a python server that sends push notifications. I am using the pyAPNs开发者_Go百科 module and when I try to connect to apple\'s server I get this error:

I am trying to create a python server that sends push notifications. I am using the pyAPNs开发者_Go百科 module and when I try to connect to apple's server I get this error:

[Errno 336265225] _ssl.c:347: error:140B0009:SSL routines:SSL_CTX_use_PrivateKey_file:PEM lib.

Anyone know what causes that? What format does the ssl cert have to be in? I tried .cer, but it gives me that error.


Documentation http://pypi.python.org/pypi/pyapns/0.3.0 says that certificate should be in PEM format. Remember that APNS authenticates client using Client Certificate, so private key is also required. Convert unencrypted private key to PEM format and concatenate with matching, PEM-encoded, certificate file. This works for other python APNS library - APNSWrapper.

0

精彩评论

暂无评论...
验证码 换一张
取 消