我尝试使用 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/
有什么帮助吗?