Add Basic authorization
Adds standard authorization by username and password
Function AddBasicAuthorization(Val User, Val Password) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
User | - | String | ✔ | Users name |
Password | - | String | ✔ | Password |
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)
.AddBasicAuthorization("user", "password") // <---
.ProcessRequest("GET")
.ReturnResponseAsJSONObject();
Result
{
"args": {},
"headers": {
"Accept": "*/*",
"Accept-Charset": "utf-8",
"Accept-Encoding": "gzip",
"Authorization": "Basic dXNlcjpwYXNzd29yZA==",
"Host": "httpbin.org",
"User-Agent": "1Script v$1.9.2.10",
"X-Amzn-Trace-Id": "Root=1-682cd6eb-0c30f42e79d3f8c417365c58"
},
"origin": "***",
"url": "https://httpbin.org/get"
}