gpt4 book ai didi

ios - gateway.push.apple.com 和 api.push.apple.com 的区别

转载 作者:行者123 更新时间:2023-12-04 11:00:14 27 4
gpt4 key购买 nike

gateway.push.apple.com 和 api.push.apple.com 之间的确切区别是什么

我可以使用 gateway.sandbox.push.apple.com 发送测试通知
但是对于生产 gateway.push.apple.com 不起作用

最佳答案

api.push.apple.com 是用于从 APNs 发送通知请求的新 API,但 gateway.push.apple.com 还在工作不用担心XD,您只需要确保完成有关签名证书的所有过程,首先,请按照您的下一步操作 aps.cer 从 App Store Connect 下载。

# Convert the .cer file into a .pem file:
$ openssl x509 -in aps.cer -inform der -out PushChatCert.pem

# Convert the private key’s .p12 file into a .pem file:
$ openssl pkcs12 -nocerts -in PushChatKey.p12 -out PushChatKey.pem

# Finally, combine the certificate and key into a single .pem file
$ cat PushChatCert.pem PushChatKey.pem > ck.pem

# At this point it’s a good idea to test whether the certificate works.
$ telnet gateway.push.apple.com 2195

# Let’s try connecting again, this time using our SSL certificate and private
key to set up a secure connection.
$ openssl s_client -connect gateway.push.apple.com:2195 -cert
PushChatCert.pem -key PushChatKey.pem
不要忘记在生产中选择正确的 API URL: gateway.push.apple.com
多数 重要的是不要忘记此推送通知配置仅在应用程序为 TestFlight 或为开发人员发布时才有效,您可以使用 gateway.sandbox.push.apple.com

关于ios - gateway.push.apple.com 和 api.push.apple.com 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58854651/

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