非英语语言的推送通知

发布于 2024-08-18 07:34:25 字数 279 浏览 6 评论 0原文

我已成功实现此代码:

有人知道如何用 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 技术交流群。

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

发布评论

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

评论(1

各自安好 2024-08-25 07:34:25

我找到了解决方案。

长度错了。在代码中,我们在计数之前传递字符串的长度。我们应该在UTF编码之后进行计数:

writer.Write((byte)0); //First byte of payload length; (big-endian first byte) 
enter code herebyte[] b1 = System.Text.Encoding.UTF8.GetBytes(payload);
writer.Write((byte)b1.Length);     //payload length (big-endian second byte) 

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:

writer.Write((byte)0); //First byte of payload length; (big-endian first byte) 
enter code herebyte[] b1 = System.Text.Encoding.UTF8.GetBytes(payload);
writer.Write((byte)b1.Length);     //payload length (big-endian second byte) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文