I have failed in all my attempts to delete a document without the ownership.
What I have tried so far
- Attempted to delete document using a services account (Tried, Failed)
- Attempted to delete document as drive admin (Tried, Failed)
In my final attempt; I am trying to follow the solution suggested in this thread
Delete a file from different owner with Google Drive API
Logged in as a services account (service account has been authorized with domain-wide delegation https://developers.google.com/drive/web/delegation) (Success)
Impersonate as the owner of the document. (Success)
Attempted to change owner to drive admin account. (Failed with Insufficient permissions for this file)
Attempted to delete the document (Failed with Insufficient permissions for this file)
Sample Code"
String serviceAccountEmail = "xxxxxx-bpoaj0ekfgcort8tcqpqh661ceet9pqs@developer.gserviceaccount.com";
var certificate = new X509Certificate2(@"key.p12", "notasecret", X509KeyStorageFlags.Exportable);
ServiceAccountCredential credential = new ServiceAccountCredential(new ServiceAccountCredential.Initializer(serviceAccountEmail)
{
Scopes = Scopes,
User = "user" //<<-- I populate this with the user to impersonate
}.FromCertificate(certificate));
// Create the service.
var service = new DriveService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "Drive API Sample",
});
UpdatePermission(service, d.DocId__c , permission_id, "owner"); //<-- updating the permissions of the admin account to owner
FilesResource.DeleteRequest request = service.Files.Delete(d.DocId__c);
String response = request.Execute(); //<-- deleting the doc here, do i need to login again using admin account?
Issue was resolved by changing UpdatePermission method to use TransferOwnership = true; Full code snippet included