如何通过 Bugzilla REST API 发布带有 Unicode 文本的错误

发布于 2024-12-08 20:31:13 字数 579 浏览 0 评论 0原文

我在发布 Unicode 文本错误时遇到了问题。

我在 .NET 中的代码看起来像。

HttpWebRequest request = BugzillaService.MakeRequest(url, "POST");
request.ContentType = "application/json;charset=utf-8";

byte[] bytes = Encoding.UTF8.GetBytes(data);
request.ContentLength = bytes.Length;

using (Stream requestStream = request.GetRequestStream())
{
requestStream.Write(bytes, 0, bytes.Length);
}

该代码适用于 ASCII 文本。

Bugzilla 网站已启用 Unicode,我可以通过网站发布带有 Unicode 文本的错误。但 Bugzilla REST 服务失败。

我是否错过了必须在 Bugzilla 网站或 REST 服务中配置某些内容才能支持 Unicode 文本?

提前致谢。

I've got a problem when posting a bug with Unicode text.

My code in .NET looks like.

HttpWebRequest request = BugzillaService.MakeRequest(url, "POST");
request.ContentType = "application/json;charset=utf-8";

byte[] bytes = Encoding.UTF8.GetBytes(data);
request.ContentLength = bytes.Length;

using (Stream requestStream = request.GetRequestStream())
{
requestStream.Write(bytes, 0, bytes.Length);
}

The code works well with ASCII text.

Unicode has been turn on with Bugzilla website, I could post a bug with Unicode text via website. But failed with Bugzilla REST service.

Do I miss something must be configured in Bugzilla website or REST service to support Unicode text?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

紫瑟鸿黎 2024-12-15 20:31:13

我是否错过了必须在 Bugzilla 网站或 REST 服务中配置某些内容才能支持 Unicode 文本?

您是否安装了此补丁

此外,如果您完全使用非 ASCII 字符,则需要修补 BZ::Client 模块,该模块存在编码错误。该补丁也位于 patch 目录中。

Do I miss something must be configured in Bugzilla website or REST service to support Unicode text?

Have you installed this patch?

Also, if you are using non-ASCII characters at all, you need to patch the BZ::Client module, which has an encoding bug. The patch for that is also in the patches directory.

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