We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84440b4 + 5007932 commit d8ae555Copy full SHA for d8ae555
README.md
@@ -25,4 +25,10 @@ Then you can make GET and POST requests from your code:
25
post.addData("name", "Rune");
26
post.send();
27
println("Reponse Content: " + post.getContent());
28
- println("Reponse Content-Length Header: " + post.getHeader("Content-Length"));
+ println("Reponse Content-Length Header: " + post.getHeader("Content-Length"));
29
+
30
+To authenticate requests using a Basic Access authentication scheme, include the following in your requests:
31
32
+ get.addUser("username", "password");
33
34
+ post.addUser("username", "password");
0 commit comments