OsRequestSecureURL
From OpenSimulator
(Difference between revisions)
m (Added note stating which version of OpenSim introduced this function) |
|||
Line 2: | Line 2: | ||
|threat_level=Moderate | |threat_level=Moderate | ||
|delay=0 | |delay=0 | ||
− | |function_syntax= | + | |function_syntax= osRequestSecureURL(list options) |
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// | // |
Revision as of 16:29, 1 May 2019
osRequestSecureURL(list options)
| |
Requests one HTTPS:// url (opensim version 0.9 or over)
Option supported : "allowXss" - Add 'Access-Control-Allow-Origin: *' to response header | |
Threat Level | Moderate |
Permissions | No permissions specified |
Extra Delay | 0 seconds |
Example(s) | |
// //osRequestSecureURL example // RequestReceived (key id, string query) { llHTTPResponse (id,200,query+" OK"); query = llUnescapeURL(query); llSay (0, query); } default { state_entry() { osRequestSecureURL ([ "allowXss" ]); } http_request(key id, string method, string body) { if (method == URL_REQUEST_GRANTED) llOwnerSay ("URL_REQUEST_GRANTED" +"\n" +body); if (method == URL_REQUEST_DENIED) llOwnerSay ("URL_REQUEST_DENIED"); if (method == "GET") RequestReceived (id, llGetHTTPHeader(id,"x-query-string")); if (method == "POST") RequestReceived (id, body); } } | |
Notes | |
This function was added in 0.9.0-post-fixes |