HTTPS: Difference between revisions

m
imported>Gabrielsroka
m (→‎{{header|Wren}}: Minor tidy)
 
(One intermediate revision by one other user not shown)
Line 860:
 
=={{header|Sidef}}==
<syntaxhighlight lang="ruby">var lwp = require('LWP::UserAgent'); # LWP::Protocol::https is needed
require('LWP::Protocol::https')
var url = 'https://rosettacode.org';
 
func get(url) {
var ua = lwp.new(
static ua = %O<LWP::UserAgent>.new(
agent agent => 'Mozilla/5.0',
ssl_opts => Hash.new(verify_hostname => 1),
);
)
var resp = ua.get(url);
if (resp.is_success) {
return resp.decoded_content
}
resp.is_success || die "Failed to GET #{url.dump}: #{resp.status_line}";
}
 
varsay url = 'get("https://rosettacode.org';")</syntaxhighlight>
var resp = ua.get(url);
resp.is_success || die "Failed to GET #{url.dump}: #{resp.status_line}";
print resp.decoded_content;</syntaxhighlight>
 
=={{header|Swift}}==
Line 989 ⟶ 994:
{{libheader|libcurl}}
An embedded program so we can ask the C host to communicate with libcurl for us.
<syntaxhighlight lang="ecmascriptwren">/* httpsHTTPS.wren */
 
var CURLOPT_URL = 10002
Line 1,022 ⟶ 1,027:
<br>
We now embed this in the following C program, compile and run it.
<syntaxhighlight lang="c">/* gcc httpsHTTPS.c -o httpsHTTPS -lcurl -lwren -lm */
 
#include <stdio.h>
Line 1,132 ⟶ 1,137:
WrenVM* vm = wrenNewVM(&config);
const char* module = "main";
const char* fileName = "httpsHTTPS.wren";
char *script = readFile(fileName);
WrenInterpretResult result = wrenInterpret(vm, module, script);
9,485

edits