gpt4 book ai didi

javascript - 使用 GitHub API 检索具有特定扩展名的文件

转载 作者:行者123 更新时间:2023-11-29 18:58:07 25 4
gpt4 key购买 nike

我想从给定的 git 存储库中获取文件列表。例如,我想从给定的 git 存储库中获取所有 *.js 文件。如何使用 GitHub API 来满足上述要求?或者有什么方法可以从 git 存储库中获取 *.js 文件列表?

最佳答案

在这里,我做了什么来找出我自己的存储库中的所有 .js 文件。

curl -i "https://api.github.com/search/code?q=extension:js+repo:vnation/NewsAggregator"

来源:https://developer.github.com/v3/search/#search-code

编辑

这就是我在我的存储库的主分支中找出“.classpath”文件路径的方法。

curl -i "https://api.github.com/repos/vnation/NewsAggregator/contents/.classpath"

来源:https://developer.github.com/v3/repos/contents/#get-contents

However, git response above API with base64 encoded content. So, to get raw data you should use below one.

curl -i "https://raw.githubusercontent.com/vnation/NewsAggregator/master/.classpath"

关于javascript - 使用 GitHub API 检索具有特定扩展名的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48191942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com