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
(PHP Extension) 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.
<?php // The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number. // For example, if using Chilkat v9.5.0.48, then include as shown here: include("chilkat_9_5_0.php"); $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 = new CkAuthGoogle(); $gAuth->put_AccessToken('GOOGLE-DRIVE-ACCESS-TOKEN'); $rest = new CkRest(); // Connect using TLS. $bAutoReconnect = true; $success = $rest->Connect('www.googleapis.com',443,true,$bAutoReconnect); // Provide the authentication credentials (i.e. the access token) $rest->SetAuthGoogle($gAuth); $json = new CkJsonObject(); $json->put_EmitCompact(false); // Get the AAWorkArea folder that is in the Google Drive root. $rest->AddQueryParam('q',''root' in parents and name='AAWorkArea''); $jsonResponse = $rest->fullRequestNoBody('GET','/drive/v3/files'); if ($rest->get_LastMethodSuccess() != true) { print $rest->lastErrorText() . "\n"; exit; } $json->Load($jsonResponse); print $json->emit() . "\n"; print 'name: ' . $json->stringOf('files[0].name') . "\n"; print 'id: ' . $json->stringOf('files[0].id') . "\n"; print 'mimeType: ' . $json->stringOf('files[0].mimeType') . "\n"; print '-' . "\n"; $rest->ClearAllQueryParams(); // Now that we know the ID for the AAWorkarea directory, get the id for the FolderA having AAWorkArea as the parent. $sbQuery = new CkStringBuilder(); $sbQuery->Append('name = 'FolderA' and ''); $sbQuery->Append($json->stringOf('files[0].id')); $sbQuery->Append('' in parents'); $rest->AddQueryParamSb('q',$sbQuery); $jsonResponse = $rest->fullRequestNoBody('GET','/drive/v3/files'); if ($rest->get_LastMethodSuccess() != true) { print $rest->lastErrorText() . "\n"; exit; } $json->Load($jsonResponse); print $json->emit() . "\n"; print 'name: ' . $json->stringOf('files[0].name') . "\n"; print 'id: ' . $json->stringOf('files[0].id') . "\n"; print 'mimeType: ' . $json->stringOf('files[0].mimeType') . "\n"; print '-' . "\n"; ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.