FeedBack service from APNS (Apple push notificatio

2019-07-21 17:46发布

问题:

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.

Please help

回答1:

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.

for reference Updated Apple Document

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

FeedbackBasicExample

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