gpt4 book ai didi

ios - 优先使用 pyapns 发送推送通知

转载 作者:行者123 更新时间:2023-11-29 01:10:24 25 4
gpt4 key购买 nike

我使用以下代码通过 apns 发送 ios 通知:

from apns import APNs, Payload

apns = APNs(cert_file='***.pem',key_file='***.pem')
payload = Payload(alert=message, badge=1)
apns.gateway_server.send_notification(token, payload)

是否可以选择以更高的优先级发送它?一些用户收到通知的时间明显延迟。

最佳答案

这里只是使用“优先级”参数作为示例,但我不能保证立即收到通知。

import time
from apns import APNs, Frame, Payload

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

# Send a notification
token_hex = 'b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b87'
payload = Payload(alert="Hello World!", sound="default", badge=1)
apns.gateway_server.send_notification(token_hex, payload)

# Send multiple notifications in a single transmission
frame = Frame()
identifier = 1
expiry = time.time()+3600
priority = 10
frame.add_item('b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b87', payload, identifier, expiry, priority)
apns.gateway_server.send_notification_multiple(frame)

关于ios - 优先使用 pyapns 发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35832216/

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