如何使基本身份验证通过apache http客户端身份获得请求

时间:2020-05-11 12:42:29

标签: java api rest httpclient apache-httpclient-4.x

我正在尝试在Github中进行获取请求,以获取有关所有存储库的信息,但是我无法使用基本身份验证。我正在尝试使用apache HTTP客户流利的软件来做到这一点。

HttpResponse response = Request.Get("https://api.github.com/user/repos").bodyForm(Form.form()
            .add("username", "auser")
            .add("password", "apassword")
            .build()).execute().returnResponse();

我收到错误java.lang.IllegalStateException: GET request cannot enclose an entity

0 个答案:

没有答案