Dart
Dart
Upload Binary File from Memory
See more Google Drive Examples
This example demonstrates how to upload a binary file from memory. It uploads the file to a subdirectory of our choosing.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example uses a previously obtained access token having permission for the
// Google Drive scope.
final gAuth = CkAuthGoogle();
gAuth.accessToken = 'GOOGLE-DRIVE-ACCESS-TOKEN';
final rest = CkRest();
// Connect using TLS.
final bAutoReconnect = true;
rest.connect('www.googleapis.com', 443, true, bAutoReconnect);
// Provide the authentication credentials (i.e. the access token)
rest.setAuthGoogle(gAuth);
// -------------------------------------------------------------------------
// A multipart upload to Google Drive needs a multipart/related Content-Type
rest.addHeader('Content-Type', 'multipart/related');
// Specify each part of the request.
// The 1st part is JSON with information about the file.
rest.partSelector = '1';
rest.addHeader('Content-Type', 'application/json; charset=UTF-8');
// Construct the JSON that will contain the metadata about the file data to be uploaded...
final json = CkJsonObject();
json.appendString('name', 'hedgehogs.jpg');
json.appendString('description', 'A cute photo of two hedgehogs.');
json.appendString('mimeType', 'image/jpeg');
// To place the file in a folder, we must add a parents[] array to the JSON
// and add the folder ID.
// In a previous example (see Build Local Metadata Cache
// we built a local cache to make it easy to lookup file IDs given a file path.
// Let's find the file ID for the folder "testFolder/abc/123"
final gdCache = CkCache();
gdCache.level = 0;
gdCache.addRoot('C:/ckCache/googleDrive');
final String folderId;
try {
folderId = gdCache.fetchText('testFolder/abc/123');
} on ChilkatException {
print('Filepath not found in cache.');
return;
}
final parents = CkJsonArray();
json.appendArray2('parents', parents);
parents.addStringAt(-1, folderId);
rest.setMultipartBodyString(json.emit());
// The 2nd part is the file content, which will contain the binary image data.
rest.partSelector = '2';
rest.addHeader('Content-Type', 'image/jpeg');
final fac = CkFileAccess();
// Read a JPG file from the local filesystem.
final jpgBytes = fac.readEntireFile('qa_data/jpg/hedgehogs.jpg');
// Add the bytes to our upload
rest.setMultipartBodyBinary(jpgBytes);
final String jsonResponse;
try {
jsonResponse = rest.fullRequestMultipart('POST', '/upload/drive/v3/files?uploadType=multipart');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
// A successful response will have a status code equal to 200.
if (rest.responseStatusCode != 200) {
print('response status code = ${rest.responseStatusCode}');
print('response status text = ${rest.responseStatusText}');
print('response header: ${rest.responseHeader}');
print('response JSON: $jsonResponse');
return;
}
// Show the JSON response.
json.load(jsonResponse);
// Show the full JSON response.
json.emitCompact = false;
print(json.emit());
// A successful response looks like this:
// {
// "kind": "drive#file",
// "id": "0B53Q6OSTWYoldmJ0Z3ZqT2x5MFk",
// "name": "hedgehogs.jpg",
// "mimeType": "image/jpeg"
// }
// Get the fileId:
print('fileId: ${json.stringOf('id')}');
}