Fogbugz:有没有办法使用API​​查看案例的历史记录

发布于 2024-08-19 05:10:27 字数 34 浏览 7 评论 0原文

我想了解一个案件的所有历史记录。通过api可以实现吗?

I want to get all the history of a case. Is this possible through the api?

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

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

发布评论

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

评论(2

柠栀 2024-08-26 05:10:27

执行 search 命令,提供错误 ID 作为查询(q 参数)并询问结果中的 events 列(使用 <代码>cols参数)。其 URL 将如下所示:

http://server/api.asp?cmd=search&q=1000&cols=events&token=xxx

在返回的 XML 中, 元素(如果 bug ID 有效,则只有一个)将具有 < /code> 子元素,其中 子元素包含历史记录; XML 格式记录在 API 文档。例如,如果您只想转储案例上的注释,则可以枚举 XPath 查询 /response/cases/case/events/event/s 的结果。

Execute the search command, supplying the bug ID as the query (q parameter) and asking for the events column in the results (with the cols parameter). The URL for this will look like:

http://server/api.asp?cmd=search&q=1000&cols=events&token=xxx

In the returned XML, the <case> element (there will be just one if the bug ID is valid) will have an <events> child element with <event> children containing the history; the XML format is documented in the API documentation. If you just wanted to dump the comments on a case, for example, you could enumerate the results of the XPath query /response/cases/case/events/event/s.

舂唻埖巳落 2024-08-26 05:10:27

Fog Creek Software 的人们已经开始了一个奇妙的“StackExchange”,本质上使用与 Stack Overflow 相同的软件。您可能想检查一下。

Fogbugz 知识交流

The folks at Fog Creek Software have started a fantastic "StackExchange" using, essentially, the same software as Stack Overflow. You might want to check it out.

Fogbugz Knowledge Exchange

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