如何使用Github API获取回购中特定文件夹的最新更新时间?
我已经尝试过了
https://api.github.com/repos/User/Repo/contents
但它没有返回有关最新更新时间的任何信息。
或者Github不可能这样做吗?
答案 0 :(得分:1)
您可以使用Commits API获取该路径的提交列表:
https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository
如果查看返回列表中的第一个提交,那是修改该文件夹中某些内容的最新提交。创建提交的日期是您正在寻找的。 p>