非英语语言的推送通知
我已成功实现此代码:
有人知道如何用 C# 编写 Apple 推送通知提供程序吗?
效果很好。但我有一个问题,有人可以帮助我如何发送非英语消息,例如希伯来语或阿拉伯语吗?
如果字符串包含任何非英文字符,则不会发送。
谢谢
I have implemented successfully this code:
Does anyone know how to write an Apple Push Notification Provider in C#?
It works great. But I have a question, can anybody help me how to send non english messages like Hebrew Or Arabic?
If the string contains any non english characters, it is not sent.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。
长度错了。在代码中,我们在计数之前传递字符串的长度。我们应该在UTF编码之后进行计数:
I found the solution.
The length was wrong. In the code we pass the length of the string before the counting. We should count it after the UTF encoding: