mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
1.2 KiB
1.2 KiB
sidebar_position |
---|
4 |
Upload file
Uploads a file to the drive
Function UploadFile(Val Token, Val File, Val Description) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Token |
File | --file | BinaryData,String | File to be uploaded |
Description | --props | Map Of KeyAndValue | JSON description or path to .json |
Returns: Map Of KeyAndValue - serialized JSON response from Google
Description = New Map;
Description.Insert("MIME", "image/jpeg");
Description.Insert("Name", "New file.jpg");
Description.Insert("Description", "This is a new file");
Description.Insert("Parent", "root");
Image = "C:\OPI\image.jpg";
Response = OPI_GoogleDrive.UploadFile(Token, Image, Description); //Map
Response = OPI_Tools.JSONString(Response); //String
oint gdrive UploadFile --token %token% --file %file% --props %props%
{
"mimeType": "image/jpeg",
"name": "New file.jpg",
"id": "16hPGNTMmbnXhz_g0vjGbrLP19h56RwIg",
"kind": "drive#file"
}