Fogbugz API :: 在自定义字段上搜索
我的 Fogbugz 版本是 v8,我正在尝试使用 API 通过我创建的自定义字段来优化结果,到目前为止,我得到了以下内容:
/api.asp?token=[token]&cmd=search&q=project:"=116"+plugin_customfields_at_fogcreek_com_environmentf52:LAMP&cols=sTitle,sPersonAssignedTo,ixBug,environment,product
但 API 一直给我一个错误,说
The requested search axis 'plugin_customfields_at_fogcreek_com_environmentf52' is not recognized.
有人知道吗我做错了吗?
My version of Fogbugz is v8 and I'm trying to use the API to refine results by a custom field that i've created, so far i've got the following:
/api.asp?token=[token]&cmd=search&q=project:"=116"+plugin_customfields_at_fogcreek_com_environmentf52:LAMP&cols=sTitle,sPersonAssignedTo,ixBug,environment,product
But the API keeps giving me an error saying
The requested search axis 'plugin_customfields_at_fogcreek_com_environmentf52' is not recognized.
Does anybody know what I am doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
&
而不是+
来指示不同的搜索条件。You use
&
instead of+
to indicate different search criteria.