You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-01 22:29:52 +02:00
Main build (Jenkins)
This commit is contained in:
42
docs/en/md/HTTP-client/Authorization/Add-aws4-authorization.mdx
vendored
Normal file
42
docs/en/md/HTTP-client/Authorization/Add-aws4-authorization.mdx
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
# Add AWS4 authorization
|
||||
Adds data for AWS4 authorization
|
||||
|
||||
|
||||
|
||||
`Function AddAWS4Authorization(Val AccessKey, Val SecretKey, Val Region, Val Service = "s3") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Required | Description |
|
||||
|-|-|-|-|-|
|
||||
| AccessKey | - | String | ✔ | Access key for authorization |
|
||||
| SecretKey | - | String | ✔ | Secret key for authorization |
|
||||
| Region | - | String | ✔ | Service region |
|
||||
| Service | - | String | ✖ | Type of service, if different from s3 |
|
||||
|
||||
|
||||
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
:::caution
|
||||
**NOCLI:** this method is not available in CLI version
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
40
docs/en/md/HTTP-client/Authorization/Add-basic-authorization.mdx
vendored
Normal file
40
docs/en/md/HTTP-client/Authorization/Add-basic-authorization.mdx
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
sidebar_position: 1
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
# 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
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
:::caution
|
||||
**NOCLI:** this method is not available in CLI version
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4
docs/en/md/HTTP-client/Authorization/_category_.json
vendored
Normal file
4
docs/en/md/HTTP-client/Authorization/_category_.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"label": "Authorization",
|
||||
"position": "6"
|
||||
}
|
||||
Reference in New Issue
Block a user