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) Empty TrashPermanently deletes all of the user's trashed files.
#include <C_CkAuthGoogle.h> #include <C_CkRest.h> void ChilkatSample(void) { BOOL success; HCkAuthGoogle gAuth; HCkRest rest; BOOL bAutoReconnect; const char *jsonResponse; 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); jsonResponse = CkRest_fullRequestNoBody(rest,"DELETE","/drive/v3/files/trash"); if (CkRest_getLastMethodSuccess(rest) != TRUE) { printf("%s\n",CkRest_lastErrorText(rest)); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); return; } // A successful response will have a status code equal to 204 and the response body is empty. // (If not successful, then there should be a JSON response body with information..) if (CkRest_getResponseStatusCode(rest) != 204) { printf("response status code = %d\n",CkRest_getResponseStatusCode(rest)); printf("response status text = %s\n",CkRest_responseStatusText(rest)); printf("response header: %s\n",CkRest_responseHeader(rest)); printf("response JSON: %s\n",jsonResponse); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); return; } printf("Trash Emptied!\n"); CkAuthGoogle_Dispose(gAuth); CkRest_Dispose(rest); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.