Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Download Text File to a String VariableThis example demonstrates how to download the content of a text file from Google Drive into a string variable.
#include <CkAuthGoogle.h> #include <CkRest.h> #include <CkCache.h> #include <CkStringBuilder.h> void ChilkatSample(void) { CkString strOut; bool 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. CkAuthGoogle gAuth; gAuth.put_AccessToken("GOOGLE-DRIVE-ACCESS-TOKEN"); CkRest rest; // 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. bool bAutoReconnect = true; success = rest.Connect("www.googleapis.com",443,true,bAutoReconnect); // Provide the authentication credentials (i.e. the access token) rest.SetAuthGoogle(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/pigs.json". // First we lookup the fileId in the cache. With the fileId, we can download the file. CkCache gdCache; gdCache.put_Level(0); gdCache.AddRoot("C:/ckCache/googleDrive"); const char *fileId = gdCache.fetchText("testFolder/abc/123/pigs.json"); if (gdCache.get_LastMethodSuccess() != true) { strOut.append("Filepath not found in cache."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); 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. CkStringBuilder sbPath; sbPath.Append("/drive/v3/files/"); sbPath.Append(fileId); rest.AddQueryParam("alt","media"); // The FullRequestNoBody returns the file content in the response body. const char *fileContent = rest.fullRequestNoBody("GET",sbPath.getAsString()); if (rest.get_LastMethodSuccess() != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // A successful response will have a status code equal to 200. if (rest.get_ResponseStatusCode() != 200) { strOut.append("response status code = "); strOut.appendInt(rest.get_ResponseStatusCode()); strOut.append("\r\n"); strOut.append("response status text = "); strOut.append(rest.responseStatusText()); strOut.append("\r\n"); strOut.append("response header: "); strOut.append(rest.responseHeader()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.append(fileContent); strOut.append("\r\n"); strOut.append("File downloaded."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.