Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Fogbugz API 列出某个项目的所有票证。我有 FogBugz 项目 ID 和名称,现在我不太确定如何获得该项目的门票。
我查看了他们的 API 文档但找不到此选项,有人知道您如何做到这一点吗?
提前致谢
当然,您只需使用搜索功能:
https://your.fogbugz.com/api.asp?token=yourtoken&cmd=search&q=project:myproject&cols=sTitle,sPersonAssignedTo
您还可以使用q=project:"=12"+status:activewhere 12 是项目 ID。
q=project:"=12"+status:active
编辑应该这样做。