调用方法后如何在标准输出中写入(自动执行通知系统(Iphone))

发布于 2024-10-11 06:57:07 字数 374 浏览 2 评论 0原文

我正在尝试使用 https://github.com/simonwhitaker/PyAPNs< 建立自动通知系统(Iphone) /a>.当您想要发送通知时,您可以调用“apns.gateway_server.send_notification(key, Payload)”,并且必须输入 PEM 密码短语。有没有办法通过代码输入这个短语?

像这样的东西: call(apns.gateway_server.send_notification(key, Payload), sys.stdout.write("my phars"))

我不知道该怎么做

I'm trying to do a system of notifications automatic (Iphone) using https://github.com/simonwhitaker/PyAPNs. When you want to send a notification you call "apns.gateway_server.send_notification(key, payload)" and you have to enter the PEM pass phrase. Is there a way to enter this phrase through code?

Something like: call(apns.gateway_server.send_notification(key, payload), sys.stdout.write("my phars"))

I don't know how to do it

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑕疵 2024-10-18 06:57:07
import apns

gate = apns.APNs('keyfile','certfile').gateway_server()
gate.send_notification(key,payload)

你运行这个的时候有问题吗?

import apns

gate = apns.APNs('keyfile','certfile').gateway_server()
gate.send_notification(key,payload)

Is there a problem when you run this?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文