Unicode C
Unicode C
Download File (Stream to Local Filesystem)
See more Google Drive Examples
This example demonstrates how to download the content of a file from Google Drive. The file is streamed to the local filesystem.Chilkat Unicode C Downloads
#include <C_CkAuthGoogleW.h>
#include <C_CkRestW.h>
#include <C_CkCacheW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkStreamW.h>
void ChilkatSample(void)
{
BOOL success;
HCkAuthGoogleW gAuth;
HCkRestW rest;
BOOL bAutoReconnect;
HCkCacheW gdCache;
const wchar_t *fileId;
HCkStringBuilderW sbPath;
HCkStreamW fileStream;
const wchar_t *jsonResponse;
success = FALSE;
success = TRUE;
// It 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.
gAuth = CkAuthGoogleW_Create();
CkAuthGoogleW_putAccessToken(gAuth,L"GOOGLE_DRIVE_ACCESS_TOKEN");
rest = CkRestW_Create();
// Connect using TLS.
// A single REST object, once connected, can be used for many Google Drive REST API calls.
// The auto-reconnect indicates that if the already-established HTTPS connection is closed,
// then it will be automatically re-established as needed.
bAutoReconnect = TRUE;
success = CkRestW_Connect(rest,L"www.googleapis.com",443,TRUE,bAutoReconnect);
// Provide the authentication credentials (i.e. the access token)
CkRestW_SetAuthGoogle(rest,gAuth);
// ------------------------------------------------------------------------------
// To download a file, we must know the file 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 say we want to download "testFolder/abc/123/penguins.jpg".
// First we lookup the fileId in the cache. With the fileId, we can download the file.
gdCache = CkCacheW_Create();
CkCacheW_putLevel(gdCache,0);
CkCacheW_AddRoot(gdCache,L"C:/ckCache/googleDrive");
fileId = CkCacheW_fetchText(gdCache,L"testFolder/abc/123/penguins.jpg");
if (CkCacheW_getLastMethodSuccess(gdCache) != TRUE) {
wprintf(L"Filepath not found in cache.\n");
CkAuthGoogleW_Dispose(gAuth);
CkRestW_Dispose(rest);
CkCacheW_Dispose(gdCache);
return;
}
// We need to send a GET request like this:
// GET https://www.googleapis.com/drive/v3/files/fileId?alt=media
// The fileId is part of the path.
sbPath = CkStringBuilderW_Create();
CkStringBuilderW_Append(sbPath,L"/drive/v3/files/");
CkStringBuilderW_Append(sbPath,fileId);
CkRestW_AddQueryParam(rest,L"alt",L"media");
// Create a stream object with a SinkFile set to the path where the downloaded file will go.
fileStream = CkStreamW_Create();
CkStreamW_putSinkFile(fileStream,L"qa_output/penguins.jpg");
// Indicate that the response body should stream directly to fileStream,
// but only if the response status is 200.
CkRestW_SetResponseBodyStream(rest,200,TRUE,fileStream);
// Download the file, streaming the content to the SinkFile.
jsonResponse = CkRestW_fullRequestNoBody(rest,L"GET",CkStringBuilderW_getAsString(sbPath));
if (CkRestW_getLastMethodSuccess(rest) != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkAuthGoogleW_Dispose(gAuth);
CkRestW_Dispose(rest);
CkCacheW_Dispose(gdCache);
CkStringBuilderW_Dispose(sbPath);
CkStreamW_Dispose(fileStream);
return;
}
// A successful response will have a status code equal to 200.
if (CkRestW_getResponseStatusCode(rest) != 200) {
wprintf(L"response status code = %d\n",CkRestW_getResponseStatusCode(rest));
wprintf(L"response status text = %s\n",CkRestW_responseStatusText(rest));
wprintf(L"response header: %s\n",CkRestW_responseHeader(rest));
CkAuthGoogleW_Dispose(gAuth);
CkRestW_Dispose(rest);
CkCacheW_Dispose(gdCache);
CkStringBuilderW_Dispose(sbPath);
CkStreamW_Dispose(fileStream);
return;
}
wprintf(L"File downloaded.\n");
CkAuthGoogleW_Dispose(gAuth);
CkRestW_Dispose(rest);
CkCacheW_Dispose(gdCache);
CkStringBuilderW_Dispose(sbPath);
CkStreamW_Dispose(fileStream);
}