使用 ColdFusion 时的 APN 设备令牌编码 com.notnoop.apns.SimpleApnsNotification
我正在开发一个处理推送通知的 iOS 应用程序。我们的推送通知服务器是用 ColdFusion 编写的,并使用 com.notnoop.apns.SimpleApnsNotification 发送通知。在应用程序中,我获取设备令牌 (NSData
) 并对其进行 Base64 编码,然后将其发送到服务器。但是,虽然 SimpleApnsNotification
api 需要令牌的字符串,但它似乎不需要 Base64 编码的字符串。
您知道设备令牌需要什么编码 SimpleApnsNotification
吗?
I'm developing an iOS app dealing with push notifications. Our push notification server is written in ColdFusion and is using com.notnoop.apns.SimpleApnsNotification
to send the notifications. In the app, I grab the device token (NSData
) and Base64 encode it before sending it off to the server. However, while the SimpleApnsNotification
api is expecting a String for the token, it doesn't appear to want a Base64 encoded String.
Do you know what encoding SimpleApnsNotification
is expecting for the device token?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须对其进行十六进制编码。尝试使用此方法在 NSData 上创建一个类别(这对我来说非常有用):
尝试一下,看看它是否也适合您。
You've got to hex encode it. Try making a Category on NSData with this method in it (this worked great for me):
Give that a try and see if it works for you, too.