【问题标题】:How can I query custom fields with the Fogbugz API?如何使用 Fogbugz API 查询自定义字段?
【发布时间】:2019-11-15 14:23:33
【问题描述】:

我正在使用 Python fogbugz 模块来访问 XML API:

from fogbugz import FogBugz
fb = FogBugz(url=S_FOGBUGZ_URL, token=TOKEN)
respBug = fb.search(
    q=str(ixBug),
    cols="sTitle,sPersonAssignedTo,sProject,sArea,sCategory,sPriority,sStatus,events",
)

如何将自定义字段添加到列列表中?

【问题讨论】:

    标签: fogbugz fogbugz-api


    【解决方案1】:

    使用customFields 作为列名。响应中的 XML 非常混乱,带有奇怪的标签名称。

    我通过查看 Firefox Web 客户端与服务器的对应关系找到了答案。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-12
      • 2021-07-29
      • 2020-11-03
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多