Skip to main content

Set URL

Sets the new request URL

Function SetURL(Val URL) Export

ParameterCLI optionTypeRequiredDescription
URL-StringRequest URL

Returns: DataProcessorObject.OPI_HTTPClient - This processor object


caution

NOCLI: this method is not available in CLI version


1C:Enterprise/OneScript code example
    URL = "https://httpbin.org";
URL = URL + "/get";

Result = OPI_HTTPRequests.NewRequest()
.Initialize()
.SetURL(URL) // <---
.ProcessRequest("GET")
.ReturnResponseAsJSONObject();
Result
{
"args": {},
"headers": {
"Accept": "*/*",
"Accept-Charset": "utf-8",
"Accept-Encoding": "gzip",
"Host": "httpbin.org",
"User-Agent": "1Script v$1.9.2.10",
"X-Amzn-Trace-Id": "Root=1-682cd686-00fda7e2669782730329b145"
},
"origin": "***",
"url": "https://httpbin.org/get"
}