python: APNs SSLError

前端 未结 2 686
轻奢々
轻奢々 2020-12-23 11:01

I am trying to send push notifications to iPhone via python as described here but I am getting the following error:

Traceback (most recent call last):
  File         


        
2条回答
  •  Happy的楠姐
    2020-12-23 11:27

    I ran into the same error message using PyAPNs. The example says to initiate it like this:

    apns = APNs(use_sandbox=True, cert_file='cert.pem', key_file='key.pem')
    

    Turns out the solution to my problem was to include the full system path for each .pem file:

    cert_path = os.path.join(os.path.dirname(__file__), 'cert.pem')
    key_path = os.path.join(os.path.dirname(__file__), 'key.pem')
    apns = APNs(use_sandbox=True, cert_file=cert_path, key_file=key_path)
    

提交回复
热议问题