gpt4 book ai didi

javascript - 如何使用 Github API 从存储库中的目录获取文件名

转载 作者:行者123 更新时间:2023-12-05 00:31:47 26 4
gpt4 key购买 nike

我正在尝试制作一个电子应用程序来获取存储库中目录的文件名。我只是不知道如何用 api 做到这一点。我知道有办法,只是不知道怎么做。
例如:
我想使用 api 获取 github 存储库的 src/目录中的文件名。
我用 axios发出 api 请求。

最佳答案

使用获取存储库内容端点,记录在 here
查看使用 Octokit 的示例


列出存储库内容
View in Fusebit


// If you don't send the path property, by default will send the contents from the root level
const repoContent = await github.rest.repos.getContent({
owner: 'repo-owner',
repo: 'repo-name'
});

console.log('Files found at root level', repoContent.data.map((file) => file.name));

关于javascript - 如何使用 Github API 从存储库中的目录获取文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70935023/

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