Fogbugz API - 格式化提交到 sEvent 字段的数据

发布于 2024-07-27 12:51:11 字数 862 浏览 3 评论 0原文

我正在使用 Fogbugz API (v6.0) 从一些错误报告代码提交新案例。

我找不到在案例描述字段中放置换行符的正确语法。

示例 api 调用:

http://fogbugz.somesite.com/api.asp?token=b99n6u07v8qrsoqq4710ukogff5u18&cmd=new&sTitle=www.somesite.com|/ajaxRTF.asp|Permission denied&ixProject=209&ixArea=&sEvent=500 Page Error<linebreak>www.somesite.com<linebreak>Error Generated: 0x800A0046 Microsoft VBScript runtime /ajaxRTF.asp 582 -1 Permission denied&fScoutStopReporting=1&sPersonAssignedTo=Andrew Davies&sScoutDescription=www%2Ei%2Dleeds%2Enet%7C%2FajaxRTF%2Easp%7CPermission+denied 

我想要在上面代码中的 处添加换行符。 这样,当在 FB 浏览器中查看案例时,它的格式正确,

例如

500 页错误

www.somesite.com

生成错误:0x800A0046 Microsoft VBScript 运行时 /ajaxRTF.asp 582 -1 权限被拒绝

提前致谢,

Andy

I'm using the Fogbugz API (v6.0) to submit new cases from some error reporting code.

I can't find the correct syntax to put line breaks in the case description field.

sample api call:

http://fogbugz.somesite.com/api.asp?token=b99n6u07v8qrsoqq4710ukogff5u18&cmd=new&sTitle=www.somesite.com|/ajaxRTF.asp|Permission denied&ixProject=209&ixArea=&sEvent=500 Page Error<linebreak>www.somesite.com<linebreak>Error Generated: 0x800A0046 Microsoft VBScript runtime /ajaxRTF.asp 582 -1 Permission denied&fScoutStopReporting=1&sPersonAssignedTo=Andrew Davies&sScoutDescription=www%2Ei%2Dleeds%2Enet%7C%2FajaxRTF%2Easp%7CPermission+denied 

I want to have line breaks where <linebreak> is in the above code. So that when the case in viewed in FB browser it's properly formatted

e.g.

500 Page Error

www.somesite.com

Error Generated: 0x800A0046 Microsoft VBScript runtime /ajaxRTF.asp 582 -1 Permission denied

Thanks in advance,

Andy

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

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

发布评论

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

评论(1

雨夜星沙 2024-08-03 12:51:11

%0A 表示 URL 编码的换行符。

%0D%0A 是回车/换行,但 %0D 不是必需的。

%0A represents the newline character URL encoded.

%0D%0A is carriage return/line feed, but the %0D is not necessary.

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