我正在尝试在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