Bitbucket REST Api:如何使用 rest api 调用按日期 desc 对所有分支进行排序?

Bitbucket REST Api: How can I order all branches by date desc with rest api call?

我需要获取 latest 分支的 name。所以,我列出了分支,但列表的顺序不是按创建日期描述的。

下面的 api 调用不起作用。它的响应是这样的 "message": "Invalid field name: updated_on"

https://api.bitbucket.org/2.0/repositories/{user_name}/{repo_name}/refs/branches?sort=-updated_on

谢谢并致以最诚挚的问候

我找到了答案。所有分支都有目标字段,目标有日期字段。因此,为了按日期对分支进行排序,您需要按 "target.date"

指向目标日期

如下所示:

https://api.bitbucket.org/2.0/repositories/{user_name}/{repo_name}/refs/branches?sort=-target.date