- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有示例项目展示如何在 iPhone 上使用 APNS 以及如何进行设置?我目前正在查看文档,但如果能有一些工作代码可以分开并看看它们是如何协同工作的,那就太好了?
我似乎无法使用 Google 或 iPhone 开发中心找到任何内容。
最佳答案
设置推送通知服务最糟糕的部分是配置。我遇到的主要障碍是,您从 Apple 网站下载的 .cer 文件中有一个证书和一个 key ,我用 C# 编写了一个系统服务,该服务发送通知,但由于我导出了证书,连接一直失败而不是 key 。
我不记得最初是谁写的,这里有一些 python 代码,在我第一次测试通知服务时帮助了我。我喜欢它,因为它非常简单并且在测试过程中运行良好。
import socket, ssl, json, struct
# device token returned when the iPhone application
# registers to receive alerts
deviceToken = 'XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX'
thePayLoad = {
'aps': {
'alert':'Oh no! Server\'s Down!',
'sound':'k1DiveAlarm.caf',
'badge':42,
},
'test_data': { 'foo': 'bar' },
}
# Certificate issued by apple and converted to .pem format with openSSL
# Per Apple's Push Notification Guide (end of chapter 3), first export the cert in p12 format
# openssl pkcs12 -in cert.p12 -out cert.pem -nodes
# when prompted "Enter Import Password:" hit return
#
theCertfile = 'cert.pem'
#
theHost = ( 'gateway.sandbox.push.apple.com', 2195 )
#
data = json.dumps( thePayLoad )
# Clear out spaces in the device token and convert to hex
deviceToken = deviceToken.replace(' ','')
byteToken = bytes.fromhex( deviceToken ) # Python 3
# byteToken = deviceToken.decode('hex') # Python 2
theFormat = '!BH32sH%ds' % len(data)
theNotification = struct.pack( theFormat, 0, 32, byteToken, len(data), data )
# Create our connection using the certfile saved locally
ssl_sock = ssl.wrap_socket( socket.socket( socket.AF_INET, socket.SOCK_STREAM ), certfile = theCertfile )
ssl_sock.connect( theHost )
# Write out our data
ssl_sock.write( theNotification )
# Close the connection -- apple would prefer that we keep
# a connection open and push data as needed.
ssl_sock.close()
还有一个名为 apn_on_rails 的 Rails gem,如果您正在开发 Rails 应用程序,它似乎工作得很好,我今天刚刚看到它,并且能够从控制台发送通知。
在 iPhone 端,您只需调用以下命令即可注册所有类型的通知:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert];
要接收设备 token ,您需要实现以下委托(delegate)方法:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
在测试期间,您可以使用 NSLog 将 deviceToken 踢到控制台,然后将其粘贴到上面的 python 脚本中,在生产中,您显然需要设置某种方法来将 token 获取到您的服务器。
此外,在生产中,您需要查询 Apple 的反馈服务,并从删除您的应用的用户中删除设备 token 。
关于iphone - Apple PNS(推送通知服务)示例代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1052645/
我有一个连接 Azure 后端服务的 Xamarin.iOS 应用程序,我希望我的服务向客户端应用程序发送通知。 Microsoft 文档解释了如何针对不同场景设置通知中心。我想我已经得到了大部分内容
我有一个连接 Azure 后端服务的 Xamarin.iOS 应用程序,我希望我的服务向客户端应用程序发送通知。 Microsoft 文档解释了如何针对不同场景设置通知中心。我想我已经得到了大部分内容
是否有示例项目展示如何在 iPhone 上使用 APNS 以及如何进行设置?我目前正在查看文档,但如果能有一些工作代码可以分开并看看它们是如何协同工作的,那就太好了? 我似乎无法使用 Google 或
我们正在尝试在 Microsoft.ServiceBus.Notifications 中使用NotificationHubClient。我们遇到了一个奇怪的问题,下面的代码显示了我们注册设备的位置,如
我正在设置一项服务,以使用 Azure 通知中心向我们的应用程序发送推送通知。注册 Android 设备工作正常(在 VS 2015 Azure 工具中正确显示),但是当我尝试通过 Azure 门户或
我正在使用 javaPNS_2.2.jar 文件将推送通知消息发送到 iPhone 设备。 我的代码是: PushNotificationPayload payload = PushNotificat
我已经阅读了网站提供的文档,我也有代码片段,但我对 Salem 和 PNS 感到困惑。 最佳答案 PNS 代表 Payment Network Services,这是他们所有商家支付产品的通用术语,S
我找到了一些关于 PNS 的示例代码,article here 我还创建了一个 UISwitch 来启用 PNS 如何给出控制 PNS 的方法? 这就是我声明单元格的方式 cell.textLabel
我是一名优秀的程序员,十分优秀!