Ошибка вставки разрешения файла на диске Google - PullRequest
0 голосов
/ 10 мая 2019

ниже выдает ошибку при попытке удалить папку с гугл диска

Сведения об ошибке

Google.GoogleApiException
  HResult=0x80131500
  Message=Google.Apis.Requests.RequestError
Insufficient Permission: Request had insufficient authentication scopes. [403]
Errors [
    Message[Insufficient Permission: Request had insufficient authentication scopes.] Location[ - ] Reason[insufficientPermissions] Domain[global]
]

  Source=Google.Apis
  StackTrace:
   at Google.Apis.Requests.ClientServiceRequest`1.<ParseResponse>d__31.MoveNext()
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at Google.Apis.Requests.ClientServiceRequest`1.Execute()
   at EJ2FileManagerService.Models.GoogleCloud.Rename(String path, String name, String newName, String fileId, Boolean replace, Object[] data) in C:\Users\Syncfusion\Desktop\ej2-file-manager-core-service\Models\GoogleCloud.cs:line 144
   at EJ2FileManagerServices.Controllers.FileManagerController.FileOperations(FEParams args) in C:\Users\Syncfusion\Desktop\ej2-file-manager-core-service\Controllers\FileManagerController.cs:line 71
   at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters)
   at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.SyncObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.<InvokeActionMethodAsync>d__12.MoveNext()

Первоначально я пытался удалить файл из Gdrive service.Files.Delete (FILEID) .Execute (); Но это не работает, и поэтому я узнал, что нам нужно создать разрешение, но это не работает

, пытаясь с помощью API, я могу сделать необходимые вещи https://developers.google.com/drive/api/v2/reference/files/delete

 public static Permission InsertPermission(DriveService service, String fileId)
        {
            Permission newPermission = new Permission();
            newPermission.Value = "test@gmail.com";
            newPermission.Type = "user";
            newPermission.Role = "owner";
            try
            {
                return service.Permissions.Insert(newPermission, fileId).Execute();
            }
            catch (Exception e)
            {
                Console.WriteLine("An error occurred: " + e.Message);
            }
            return null;
        }
...