使用github api的版本列表

时间:2014-09-18 16:10:14

标签: git github github-api

我正在尝试使用github API获取应用程序的版本,并按照此处发布的内容进行操作 - https://developer.github.com/v3/repos/releases/#list-releases-for-a-repository

例如:要获取此repo的发布列表 - https://github.com/fastly/epoch/releases(我在这里仅使用此repo作为示例,而不是实际使用它),我尝试https://api.github.com/repos/fastly/epoch/releases但这会让我返回空白数组。

在某处我读到我们无法使用github api获取版本列表。这是真的吗?

1 个答案:

答案 0 :(得分:3)

您无法请求未发布的版本。

为了使用Github Release API端点“/ repos /:owner /:repo / releases”<获取包含(所有者/ repo)版本列表的 JSON 订阅源< / em>该回购必须有已发布的版本。

这是发布的版本的样子:

enter image description here