gpt4 book ai didi

iphone - 使用 Python 连接到适用于 iPhone 的 APNS

转载 作者:太空狗 更新时间:2023-10-29 17:47:01 25 4
gpt4 key购买 nike

我正在尝试使用 Python 向 iPhone 发送推送通知。我已将我的证书和私钥从钥匙串(keychain)访问导出到 p12 文件,然后使用以下命令将其转换为 pem 文件:

openssl pkcs12 -in cred.p12 -out cert.pem -nodes -clcerts

我正在使用 APNSWrapper在 Python 中进行连接。

我运行以下代码:

deviceToken = 'Qun\xaa\xd ... c0\x9c\xf6\xca' # create wrapperwrapper = APNSNotificationWrapper('/path/to/cert/cert.pem', True)# create messagemessage = APNSNotification()message.token(deviceToken)message.badge(5)# add message to tuple and send it to APNS serverwrapper.append(message)wrapper.notify()

然后我收到错误信息:

ssl.SSLError: (1, '_ssl.c:485: error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate unknown')

谁能帮我解决这个问题?

最佳答案

我最近使用 Django 做了这个 - http://leecutsco.de/2009/07/14/push-on-the-iphone/

可能有用吗?除了已经包含在 Python 中的库之外,它没有使用任何额外的库。提取 send_message() 方法不需要太多时间。

关于iphone - 使用 Python 连接到适用于 iPhone 的 APNS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1172769/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com