使用 Github API 获取存储库中特定文件夹的最新更新时间

Get the latest update time of a specific folder in a repo using Github API

如何使用 Github API 获取存储库中特定文件夹的最新更新时间?

我试过了 https://api.github.com/repos/User/Repo/contents

但它没有return任何关于最新更新时间的信息。

还是Github不可能做到?

您可以使用 Commits API:

获取该路径的提交列表

https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository

如果您查看返回列表中的第一个提交,那是修改了该文件夹中某些内容的最新提交。创建提交的日期就是您要查找的日期。