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.
我正在尝试通过 REST API 获取更改日志详细信息。到目前为止,我得到的是: https://teamcity.blabla.com/httpAuth/app/rest/changes/buildType:(id:20140010),其中列出了 buildType 的最新版本中的最新更改。你们知道我可以根据构建范围列出 N 个变更日志详细信息的方法吗?
从文档来看,我认为您仅限于“自日期”(开始日期)而不是范围。查询将如下所示:
https://teamcity.blabla.com/httpAuth/app/rest/changes?buildType=id:20140010&sinceDate=20130305T170030+0400
其中日期格式与 API 返回的格式相同。