问题描述
我们使用 Java
作为 APNS.I
的推送通知提供程序能够将消息发送到 APNS
但我没有关于如何获得消息反馈的想法.
We are using Java
as the push notification provider for APNS.I
am able to send the messages to the APNS
but I have no idea as to how to get the feedback for the message.
请帮忙
推荐答案
反馈服务有一个二进制接口,类似于用于发送推送通知的接口.您通过 feedback.push.apple.com
在端口 2196 上访问生产反馈服务,通过 feedback.sandbox.push.apple.com 在端口 2196 上.
The feedback service has a binary interface similar to the interface used for sending push notifications. You access the production feedback service via feedback.push.apple.com
on port 2196 and the development feedback service via feedback.sandbox.push.apple.com
on port 2196.
供参考 更新的 Apple 文档
您可以为 APNS 使用 javapns 强大且经过微调的 Java 库,
You can Use javapns powerful and fine-tuned Java library for APNS,
注意:反馈服务似乎只适用于生产网址.
Note: feedback service seems to only work on the production url.
这篇关于来自 APNS 的反馈服务(Apple 推送通知服务器)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!