Bitbucket REST Api:如何通过调用 rest api 按日期 desc 对所有分支进行排序?
Posted
技术标签:
【中文标题】Bitbucket REST Api:如何通过调用 rest api 按日期 desc 对所有分支进行排序?【英文标题】:Bitbucket REST Api: How can I order all branches by date desc with rest api call? 【发布时间】:2019-01-17 21:31:01 【问题描述】:我需要获取 latest 分支的 name。所以,我列出了分支,但列表的顺序不是按创建日期描述的。
并且下面的 api 调用不起作用。它的响应就像那个“消息”:“无效的字段名称:updated_on”
https://api.bitbucket.org/2.0/repositories/user_name/repo_name/refs/branches?sort=-updated_on
感谢和最好的问候
【问题讨论】:
【参考方案1】:我找到了答案。所有分支都有目标字段,目标有日期字段。因此,为了按日期对分支进行排序,您需要通过“target.date”来指向目标的日期
如下:
https://api.bitbucket.org/2.0/repositories/user_name/repo_name/refs/branches?sort=-target.date
【讨论】:
以上是关于Bitbucket REST Api:如何通过调用 rest api 按日期 desc 对所有分支进行排序?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Rest API 在 Bitbucket Cloud 中创建项目?