Skip to main content

Upload file

Uploads a file to the drive

Function UploadFile(Val Token, Val File, Val Description) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
File--fileBinaryData,StringFile to be uploaded
Description--propsMap Of KeyAndValueSee GetFileDescription

Returns: Map Of KeyAndValue - serialized JSON response from Google


tip

Parameters with Binary data type can also accept file paths on disk and URLs


1C:Enterprise/OneScript code example
    Token     = "ya29.a0AQQ_BDTgQbn9c5rXhPK3FCakms_7oKkdIWE1CCQFnSPftb2RxvloVqnYOcnsAKhXrD0Gq8Tz2Kgn5IBXG5E25uksZfvvTtXob-jFcuj_9LZYs9La4HrcFk766...";
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
Directory = "191iyaa6-2BCNRPOF0F8mQ0TuNWPNesdM";

Description = OPI_GoogleDrive.GetFileDescription();
Description.Insert("Parent", Directory);

Result = OPI_GoogleDrive.UploadFile(Token, Image, Description);
    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':'11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y'}"
Result
{
"kind": "drive#file",
"id": "1VjQsxYw-ZdGKimR0Hski7DttKwfFbah6",
"name": "New file.jpg",
"mimeType": "image/jpeg"
}