问题描述
我们使用的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 并通过开发反馈服务反馈.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.
参考<一个href=\"https://developer.apple.com/library/$p$prelease/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Appendixes/BinaryProviderAPI.html\"相对=nofollow>更新苹果文档
您可以使用强大和微调Java库APNS,
You can Use javapns powerful and fine-tuned Java library for APNS,
注意:反馈服务似乎只对生产工作的网址
Note: feedback service seems to only work on the production url.
这篇关于从APNS反馈服务(苹果推送通知服务器)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!