HTTPS/Authenticated: Difference between revisions

Added zkl
(add C#)
(Added zkl)
Line 302:
set data [http::data $token]
http::cleanup $token</lang>
 
=={{header|zkl}}==
Using cURL to do the heavy lifting, get a XML list of computers connected to my router.
<lang zkl>zkl: var ZC=Import("zklCurl")
zkl: var data=ZC().get("http://usr:pw@192.168.1.1/computer_list.xml")
L(Data(1,049),121,0)
zkl: data[0][121,*].text</lang>
{{out}}
<pre>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<computers>
<ip_address0>192.168.1.100</ip_address0><host_name0>core-shot
...
</pre>
 
{{omit from|Batch File|Does not have network access.}}
Anonymous user