客户端访问APN(苹果推送通知)服务的端口

发布于 2024-12-12 11:55:43 字数 323 浏览 0 评论 0原文

根据 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

佞臣 2024-12-19 11:55:43

您无需关心客户端的端口!您的提供商只需要知道设备令牌。 这个< /a> 将有助于理解它是如何工作的。

好的,这就是我在我的应用程序中所做的:

 [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

在 appDidFinishedLaunchingWithOptions 中
并在 AppDelegate 中添加两个方法:

- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken {
    self.registered = YES;
//Сustom sending to my server  
  [[pushHandler sharedInstance] sendToken:devToken];
}

- (void)application:(UIApplication *)app 
didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
    NSLog(@"Error in registration. Error: %@", err);
}

仅此而已。如果需要的端口被关闭,您将收到错误消息。我从来没有因为端口关闭而出现错误。

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:

 [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

in appDidFinishedLaunchingWithOptions
And two methods to add in AppDelegate:

- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken {
    self.registered = YES;
//Сustom sending to my server  
  [[pushHandler sharedInstance] sendToken:devToken];
}

- (void)application:(UIApplication *)app 
didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
    NSLog(@"Error in registration. Error: %@", err);
}

And that's all. If needed port is closed, you will get error. I've never got error because of closed port.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文