C
C
Empty Trash
See more Google Drive Examples
Permanently deletes all of the user's trashed files.Chilkat C Downloads
#include <C_CkAuthGoogle.h>
#include <C_CkRest.h>
void ChilkatSample(void)
{
BOOL success;
HCkAuthGoogle gAuth;
HCkRest rest;
BOOL bAutoReconnect;
const char *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 = 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);
}