Upload file
Uploads a file to the drive
- Parameters
- Advanced call ?
Function UploadFile(Val Token, Val File, Val Description) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| File | --file | BinaryData, String | ✔ | File to be uploaded |
| Description | --props | Map Of KeyAndValue | ✔ | See GetFileDescription |
Returns
Map Of KeyAndValue - serialized JSON response from Google
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
tip
Parameters with Binary data type can also accept file paths on disk and URLs
1C:Enterprise/OneScript code example
Token = "ya29.a0ATi6K2sWW_31WLH0d9aK0qk0HJ-UfyvZDcLeBbF5bLU7QH09Bx2pXAupIw40USQVaxXqsovItVSt9swWuPdBDSA0eFaVPE0CbaU2OLQlyrnITI1VVXgZ_Gx2R...";
Directory = "1RA5EV-HEr2SDzooZLmZ2h6HnnmZ0EHzP";
Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Binary data or File path
Clear = False;
Description = OPI_GoogleDrive.GetFileDescription(Clear);
Description.Insert("Parent", Directory);
Result = OPI_GoogleDrive.UploadFile(Token, Image, Description);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint gdrive UploadFile \
--token "***" \
--file "https://hut.openintegrations.dev/test_data/picture.jpg" \
--props "{'MIME':'image/jpeg','Name':'New file.jpg','Description':'This is a new file','Parent':'1T61ve0vc7hRiV8RYiMcBqR0GH3umkYDN'}"
:: JSON data can also be passed as a path to a .json file
oint gdrive UploadFile ^
--token "***" ^
--file "https://hut.openintegrations.dev/test_data/picture.jpg" ^
--props "{'MIME':'image/jpeg','Name':'New file.jpg','Description':'This is a new file','Parent':'1T61ve0vc7hRiV8RYiMcBqR0GH3umkYDN'}"
Result
{
"kind": "drive#file",
"id": "1GqDkU__lzFdSj2KRtdxeUTO0xgN_cThi",
"name": "New file.jpg",
"mimeType": "image/jpeg"
}