使用 ColdFusion 时的 APN 设备令牌编码 com.notnoop.apns.SimpleApnsNotification

发布于 2024-11-17 11:25:28 字数 310 浏览 0 评论 0原文

我正在开发一个处理推送通知的 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 技术交流群。

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

发布评论

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

评论(1

不语却知心 2024-11-24 11:25:28

你必须对其进行十六进制编码。尝试使用此方法在 NSData 上创建一个类别(这对我来说非常有用):

 - (NSString*) hexEncode {
NSString *deviceToken = [[self description] stringByReplacingOccurrencesOfString: @"<" withString: @""];
deviceToken = [deviceToken stringByReplacingOccurrencesOfString: @">" withString: @""] ;
deviceToken = [deviceToken stringByReplacingOccurrencesOfString: @" " withString: @""];
return deviceToken;
}

尝试一下,看看它是否也适合您。

You've got to hex encode it. Try making a Category on NSData with this method in it (this worked great for me):

 - (NSString*) hexEncode {
NSString *deviceToken = [[self description] stringByReplacingOccurrencesOfString: @"<" withString: @""];
deviceToken = [deviceToken stringByReplacingOccurrencesOfString: @">" withString: @""] ;
deviceToken = [deviceToken stringByReplacingOccurrencesOfString: @" " withString: @""];
return deviceToken;
}

Give that a try and see if it works for you, too.

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