여기 와 여기 에있는 Google 드라이브 API에있는 코드를 전적으로 기반으로 다음 코드를 컴파일하려고합니다 . 브라우저에서 권한을 허용하라는 메시지가 표시되었지만 다음과 같은 예외가 발생했습니다.
Google.Apis.dll에서 'Google.GoogleApiException'유형의 처리되지 않은 예외가 발생했습니다.
추가 정보 : Google.Apis.Requests.RequestError 권한 부족 [403]
코드:
using Google.Apis.Auth.OAuth2;
using Google.Apis.Drive.v3;
using Google.Apis.Drive.v3.Data;
using Google.Apis.Services;
using Google.Apis.Util.Store;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace DriveQuickstart
{
class Program
{
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/drive-dotnet-quickstart.json
static string[] Scopes = { DriveService.Scope.DriveReadonly };
static string ApplicationName = "Drive API .NET Quickstart";
static void Main(string[] args)
{
UserCredential credential;
using (var stream =
new FileStream("client_secret.json", FileMode.Open, FileAccess.ReadWrite))
{
string credPath = System.Environment.GetFolderPath(
System.Environment.SpecialFolder.Personal);
credPath = Path.Combine(credPath, ".credentials/drive-dotnet-quickstart.json");
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
Console.WriteLine("Credential file saved to: " + credPath);
}
// Create Drive API service.
var service = new DriveService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ApplicationName,
});
var fileMetadata = new Google.Apis.Drive.v3.Data.File()
{
Name = "Invoices",
MimeType = "application/vnd.google-apps.folder"
};
var request = service.Files.Create(fileMetadata);
request.Fields = "id";
var file = request.Execute();
Console.WriteLine("Folder ID: " + file.Id);
Console.Read();
}
}
}
내가 여기서 무엇을 놓치고 있습니까? 감사.
감독, 죄송합니다. 나는 변경 DriveService.Scope.DriveReadonly
에DriveService.Scope.DriveFile
위의 변경 후 C:\users\UserName\Documents\.credentials\drive-dotnet-quickstart.json
폴더 로 이동 하여 파일을 삭제해야 Google.Apis.Auth.OAuth2.Responses.TokenResponse-user
했습니다.. 다시 실행하면 다시 생성됩니다.
이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.
침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제
몇 마디 만하겠습니다