APNS的FeedBack服务(Apple推送通知服务器)

时间:2022-07-07 02:40:07

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.

我们使用Java作为APNS的推送通知提供者。我能够将消息发送到APNS,但我不知道如何获取消息的反馈。

Please help

1 个解决方案

#1


6  

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.

反馈服务具有类似于用于发送推送通知的接口的二进制接口。您可以通过端口2196上的feedback.push.apple.com访问生产反馈服务,并通过端口2196上的feedback.sandbox.push.apple.com访问开发反馈服务。

for reference Updated Apple Document

供参考更新的Apple文档

You can Use javapns powerful and fine-tuned Java library for APNS,

您可以为APNS使用javapns功能强大且经过微调的Java库,

FeedbackBasicExample

Note: feedback service seems to only work on the production url.

注意:反馈服务似乎只适用于生产网址。

#1


6  

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.

反馈服务具有类似于用于发送推送通知的接口的二进制接口。您可以通过端口2196上的feedback.push.apple.com访问生产反馈服务,并通过端口2196上的feedback.sandbox.push.apple.com访问开发反馈服务。

for reference Updated Apple Document

供参考更新的Apple文档

You can Use javapns powerful and fine-tuned Java library for APNS,

您可以为APNS使用javapns功能强大且经过微调的Java库,

FeedbackBasicExample

Note: feedback service seems to only work on the production url.

注意:反馈服务似乎只适用于生产网址。