Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) Lookup Google Drive Folder ID Given a Folder PathDemonstrates how to find the Google Drive folder ID given a Folder Path. This example demonstrates that we cannot simply query by folder name. (We can if every folder name is unique, but if not...) For example, imagine we have the following directory structure on Google Drive: /AAWorkArea /AAWorkArea/FolderA /AAWorkArea/FolderB /Folder2 /Folder2/FolderA There are two directories named "FolderA". One is contained within AAWorkArea, and one is contained within "Folder2". To say it differently: One has the parent "AAWorkArea" and the other's parent is "Folder2". To find the id of "/AAWorkArea/FolderA", we need to first find the id for "AAWorkArea", and then find the id for the folder with name="FolderA" and with AAWorkArea's id in FolderA's parents.
#include <C_CkAuthGoogle.h> #include <C_CkRest.h> #include <C_CkJsonObject.h> #include <C_CkStringBuilder.h> void ChilkatSample(void) { BOOL success; HCkAuthGoogle gAuth; HCkRest rest; BOOL bAutoReconnect; HCkJsonObject json; const char *jsonResponse; HCkStringBuilder sbQuery; 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 = CkAuthGoogle_Create(); CkAuthGoogle_putAccessToken(gAuth,"GOOGLE-DRIVE-ACCESS-TOKEN"); rest = CkRest_Create(); // Connect using TLS. bAutoReconnect = TRUE; success = CkRest_Connect(rest,"www.googleapis.com",443,TRUE,bAutoReconnect); // Provide the authentication credentials (i.e. the access token) CkRest_SetAuthGoogle(rest,gAuth); json = CkJsonObject_Create(); CkJsonObject_putEmitCompact(json,FALSE); // Get the AAWorkArea folder that is in the Google Drive root. CkRest_AddQueryParam(rest,"q","'root' in parents and name='AAWorkArea'"); jsonResponse = CkRest_fullRequestNoBody(rest,"GET","/drive/v3/files"); if (CkRest_getLastMethodSuccess(rest) != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); CkJsonObject_Dispose(json); return; } CkJsonObject_Load(json,jsonResponse); printf("%s\n",CkJsonObject_emit(json)); printf("name: %s\n",CkJsonObject_stringOf(json,"files[0].name")); printf("id: %s\n",CkJsonObject_stringOf(json,"files[0].id")); printf("mimeType: %s\n",CkJsonObject_stringOf(json,"files[0].mimeType")); printf("-\n"); CkRest_ClearAllQueryParams(rest); // Now that we know the ID for the AAWorkarea directory, get the id for the FolderA having AAWorkArea as the parent. sbQuery = CkStringBuilder_Create(); CkStringBuilder_Append(sbQuery,"name = 'FolderA' and '"); CkStringBuilder_Append(sbQuery,CkJsonObject_stringOf(json,"files[0].id")); CkStringBuilder_Append(sbQuery,"' in parents"); CkRest_AddQueryParamSb(rest,"q",sbQuery); jsonResponse = CkRest_fullRequestNoBody(rest,"GET","/drive/v3/files"); if (CkRest_getLastMethodSuccess(rest) != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); CkJsonObject_Dispose(json); CkStringBuilder_Dispose(sbQuery); return; } CkJsonObject_Load(json,jsonResponse); printf("%s\n",CkJsonObject_emit(json)); printf("name: %s\n",CkJsonObject_stringOf(json,"files[0].name")); printf("id: %s\n",CkJsonObject_stringOf(json,"files[0].id")); printf("mimeType: %s\n",CkJsonObject_stringOf(json,"files[0].mimeType")); printf("-\n"); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); CkJsonObject_Dispose(json); CkStringBuilder_Dispose(sbQuery); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.