3

サービス アカウントによる承認 (https://developers.google.com/drive/service-accounts) とファイルの挿入 (https://developers.google.com/ドライブ/v2/参照/ファイル/挿入)。oauth2 でクライアント ID/クライアント シークレットを使用して動作させることができましたが、自動化が必要なため、秘密鍵を使用したいと考えています。

私の問題は、ファイル ID、タイトル、説明、および MIME タイプが返されることです。たとえば、ファイル ID: %s0B6ysbMIcH3AGWHJPRmZUTVZZMnM、タイトル: マイ ドキュメント、説明: テスト ドキュメント、MIME タイプ: テキスト/プレーンですが、ドキュメントは存在しません。ドライブにあり、エラーは返されません。

私はこれに2日間取り組んできましたが、うまくいきませんでした。オンラインで調べたところ、以下のような例が見つかりました。複数の Google アカウントを試しました (1 つは会社の Google Apps で、もう 1 つは通常の Gmail アカウントで同じ結果が得られました)。

コード(アカウント情報が変更されたもの):

public class AutoGoogleDrive {

private static final String SERVICE_ACCOUNT_PKCS12_FILE_PATH = "/home/jsmith/Java/11111111111111111111111111-privatekey.p12";
private static final String SERVICE_ACCOUNT_EMAIL = "1111111111111@developer.gserviceaccount.com";


public static Drive getDriveService() throws GeneralSecurityException,
IOException, URISyntaxException {
HttpTransport httpTransport = new NetHttpTransport();
JacksonFactory jsonFactory = new JacksonFactory();
GoogleCredential credential = new GoogleCredential.Builder()
  .setTransport(httpTransport)
  .setJsonFactory(jsonFactory)
  .setServiceAccountId(SERVICE_ACCOUNT_EMAIL)
  .setServiceAccountScopes(DriveScopes.DRIVE_FILE)
  .setServiceAccountPrivateKeyFromP12File(
      new java.io.File(SERVICE_ACCOUNT_PKCS12_FILE_PATH))
  .build();
 Drive service = new Drive.Builder(httpTransport, jsonFactory, null)
  .setHttpRequestInitializer(credential).build();
 return service;
}

public static void main(String[] args) throws IOException {


    Drive service = null;
    try {
        service = getDriveService();
    } catch (GeneralSecurityException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (URISyntaxException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }


//Insert a text file  
File body = new File();
body.setTitle("My document");
body.setDescription("A test document");
body.setMimeType("text/plain");

// File's content.
java.io.File fileContent = new java.io.File("/home/jsmith/document.txt");
FileContent mediaContent = new FileContent("text/plain", fileContent);
try {
  File file = service.files().insert(body, mediaContent).execute();

  // Uncomment the following line to print the File ID.
   System.out.println("File ID: %s" + file.getId());
  System.out.println("Title: " + file.getTitle());
   System.out.println("Description: " + file.getDescription());
   System.out.println("MIME type: " + file.getMimeType());

} catch (IOException e) {
  System.out.println("An error occured: " + e); 
} 

}
}

ありがとう、

ジョー・スミス

4

1 に答える 1

4

サービス アカウントを使用する場合、挿入されたファイルは、ドライブ UI がないアプリケーションのドライブ アカウントに追加されます。これらのファイルは、API を介してのみ使用できます。

于 2012-11-08T18:29:28.837 に答える