在github api中获取释放空

时间:2016-01-28 12:45:25

标签: api github

我尝试使用以下内容获取idea-community版本,但它返回空

curl "https://api.github.com/repos/JetBrains/intellij-community/releases"

here

中存在版本时

如何获得其发布

1 个答案:

答案 0 :(得分:4)

来自the documentation

  

这将返回一个版本列表,其中不包含尚未与版本关联的常规Git标记。要获取Git标记列表,请使用Repository Tags API

GitHub的UI令人困惑,但这个存储库实际上并没有任何版本,这是GitHub特有的概念。 "发布"你看到的实际上只是常规的Git标签。

请改为尝试:

curl https://api.github.com/repos/JetBrains/intellij-community/tags

另见What's the difference between tag and release?