客户端访问APN(苹果推送通知)服务的端口
根据 Apple 文档,它提到了 APN 的 2195、2196 和 5223服务。但我不知道应该打开客户端的哪个端口来访问APN的服务。
我的服务提供商要求我提供 FROM :
以便他们可以帮助我打开我的服务器上的端口访问。有人可以给我一些提示吗?
谢谢
According to apple docs, it mentioned 2195, 2196 and 5223 for APN's service. But I have no idea which port on client side should be opened to access APN's service.
My service provider ask me to provide the format of FROM : <server> <port> TO: <server> <port>
so that they can help me to open the port access on my server. Anyone could give me some hints?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无需关心客户端的端口!您的提供商只需要知道设备令牌。 这个< /a> 将有助于理解它是如何工作的。
好的,这就是我在我的应用程序中所做的:
在 appDidFinishedLaunchingWithOptions 中
并在 AppDelegate 中添加两个方法:
仅此而已。如果需要的端口被关闭,您将收到错误消息。我从来没有因为端口关闭而出现错误。
You don't need to care about ports on client side! Your provider need to know only device token. This will be helpful to understand how it works.
OK, that's what I've done in my app:
in appDidFinishedLaunchingWithOptions
And two methods to add in AppDelegate:
And that's all. If needed port is closed, you will get error. I've never got error because of closed port.