我正在尝试使用Github API v3,以获取存储库中的所有文件和其他详细信息。但是在我的组织中,我们的github网址为https://github.abc.company_name.com。在这种情况下,我将REST URL保留为https://abi.github.abc.company_name.com而不是https://abi.github.com。它不断返回Could not get any response
。
我尝试使用其他身份验证。我无法收到200条回复。
答案 0 :(得分:2)
要在GitHub Enterprise上访问API,您需要按以下方式调用API:
https://hostname/api/v3/
因此,如果您的GitHub网址为https://github.abc.company_name.com
,则需要使用基本网址调用API,如下所示:
https://github.abc.company_name.com/api/v3/
还请注意,由于API是安全的,因此在调用API时需要添加基本身份验证标头。
参考:GitHub