Skip to content

Commit

Permalink
Corrected the use of the wrong request object in the example
Browse files Browse the repository at this point in the history
  • Loading branch information
ok2c committed Jan 14, 2024
1 parent 679991a commit d02687d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ public static void main(final String[] args) throws Exception {
.addParameter("IDToken1", "username")
.addParameter("IDToken2", "password")
.build();
httpclient.execute(httpget, response -> {
httpclient.execute(login, response -> {
System.out.println("----------------------------------------");
System.out.println("Login form get: " + response.getCode() + " " + response.getReasonPhrase());
EntityUtils.consume(response.getEntity());
Expand Down

0 comments on commit d02687d

Please sign in to comment.