6

如何使用 github v3 内容 api 从特定分支获取文件内容 http://developer.github.com/v3/repos/contents/ 我尝试了这些选项 https://api.github.com/repos/ 'org_name '/'repo_name'/contents/'file_path' https://api.github.com/repos/ 'org_name'/'repo_name'/contents/'file_path'/?ref=branch_name 或相当多的选项,但它获取仅来自 master 分支的文件内容。

但我需要从 master 以外的分支获取内容。我知道我错过了一些非常基本的东西,但不知道是什么。提前致谢

4

1 回答 1

16

这很奇怪,因为它似乎对我有用。这是从 Google 的 GitHub 组织的 tracking-framework 存储库中获取 gh-pages 分支中 index.html 文件的 URL:

https://api.github.com/repos/google/tracing-framework/contents/index.html?ref=gh-pages

master 中不存在 index.html 文件。

你能给出你正在尝试的确切网址吗?

于 2013-02-27T16:15:58.740 回答