bug#52434: [patch] [doc] add http-request example to web examples
"Dr. Arne Babenhauserheide" <[email protected]>
| Newsgroups | gmane.lisp.guile.bugs |
|---|---|
| Message-ID | <[email protected]> |
Hi, the attached patch adds a client example that access the hello-world server. Best wishes, Arne -- Unpolitisch sein heißt politisch sein, ohne es zu merken. draketo.de
0001-doc-Provide-full-server-client-example.patch
(text/x-patch, 2 KB)
From 7d41deec7a550a186fb5e653a7007ae38fd62dbd Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide <[email protected]> Date: Sat, 11 Dec 2021 15:43:21 +0100 Subject: [PATCH] doc: Provide full server<->client example * doc/ref/web.texi: (Server: Hello, World!): Add Server:-Prefix to subsubsection * doc/ref/web.texi: (Client: Visit the server): Example to access the defined header. --- doc/ref/web.texi | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/doc/ref/web.texi b/doc/ref/web.texi index 93cd0214f..7d54a8f42 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -1833,7 +1833,7 @@ implementation's open function. Well, enough about the tedious internals. Let's make a web application! -@subsubsection Hello, World! +@subsubsection Server: Hello, World! The first program we have to write, of course, is ``Hello, World!''. This means that we have to implement a web handler that does what we @@ -1870,6 +1870,30 @@ By default, the web server listens for requests on @code{localhost:8080}. Visit that address in your web browser to test. If you see the string, @code{Hello World!}, sweet! +@subsubsection Client: Visit the server + +The second program talks to our server. + +@example +(use-modules (web client) + (web http) + (web uri) + (ice-9 receive)) +(receive (response-status response-body) + (http-request "http://localhost:8080" + #:method 'GET + #:headers `((content-encoding . (gzip deflate)) + (user-agent . "guile web client") + (referer . ,(string->uri "http://www.gnu.org")) + (accept (*/*)) + (content-type . (application/json))) + #:streaming? #f + #:decode-body? #t + #:body #f) + (display response-body)) +@end example + + @subsubsection Inspecting the Request The Hello World program above is a general greeter, responding to all -- 2.34.0
signature.asc
(application/pgp-signature, 1.1 KB)
-----BEGIN PGP SIGNATURE----- iQJEBAEBCAAuFiEE801qEjXQSQPNItXAE++NRSQDw+sFAmG0u0kQHGFybmVfYmFi QHdlYi5kZQAKCRAT741FJAPD6+obD/0Y+ZiKDHoLV/OOfD72C2Iy+gSoWQWfSpk3 7EA5qUJVRw4l/0pu6TFcqi5LUDxu0u+tf56I30uDVbaHe3exYMBq+g69VaJBdCnf 81NwiE8mVV3dCiY/u5RVl9uRIjIHf6Yh2lsiH21s7wx3LVjbnacawLe8368Uhl4/ L5JZe5Qskrzp5vCoJIMwnFyGCplhhJSBb9EvbZmQrJeJgHEC543CWhJ2H1VTfNcz BepRXFCzOcBusbHh2jQm98ywRG0esE9u793cyKtstIvQGE+CNaIOH+4lNu8dhtxS dsqxtcuHm3ulskdhC4ZGMYOOyzjMYuHZhN+vHp9B+oiEZhNosEoeVlK8NUQWS1sE JZ7qNS4VQ7PGP8Mpvo48Pt5+hGaO7sCGelV99E/RD+S1Yvk6nPKgaPpAzLwzZAjS cKtAI3f39KywG/mNQpfiRVqpTRSljbjbJWzcUzOn1sV0ETgyh3vwBI+941TzyQmB jiS1S8UdC3BviESlMUfiwJ9kKuEhGAXacZLgN3dp3v61CIa9LiN84xYqFnH1bguH FcI1CdNBc8G4O9SXqIR1804EPd3uXHd8DLVbt8Yd9uYUlbxmY41psxz9fdHaE11m en2oNwi9Yn/+SgLNfl65q5dMh8K0EOVhGm6mUG0/T/6XPxMiRP82u16uy1DBJw/F BHVe+yHKAojEBAEBCAAuFiEE3Si95tmHXKvOSosd3M8NswvBBUgFAmG0u0kQHGFy bmVfYmFiQHdlYi5kZQAKCRDczw2zC8EFSPTzBACKI3bjtC4Y/MF/+FkI57Wfot+l 2yxDlvQ1ZEY7PrK7TAR94AYZg1o7qeAFheKACyyhGtRTtc5xvOLvwXqTZhG1lIqQ Quu5mFo+TbgTLzUpt200R7l5CVPdBaETkUEOHKSiLUS7NxDXPB1TNNSN2YkvcOFW u7Icx0otm4yRGnrNvQ== =OoTB -----END PGP SIGNATURE-----