3

我尝试使用 jcabi-github 以下是我的代码

Github github = new RtGithub("<Oauth token>");
Iterable<Repo> repo =  github.repos().iterate("");
for (Repo repo2 : repo) {
    System.out.println(repo2);
}

但这给出了错误

{"message":"Bad credentials","documentation_url":"https://developer.github.com/v3"}>
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)

我正在尝试连接到我公司的 git hub 帐户,即https://github.corp.xyz.com/

有什么帮助吗?

4

1 回答 1

2

我通过使用https://github.com/kohsuke/github-api做到了这一点

这是供将来参考的代码:

GitHub github = GitHub.connectToEnterprise(
                        "https://github.corp.<abc>.com/api/v3",
                        "<Oauth token>");

GHContentSearchBuilder search = github.searchContent();
GHContentSearchBuilder s = search.q(<searchkeyword>);
于 2015-07-21T07:52:35.137 回答