1

初回認証コードからリフレッシュ トークンとアクセス トークンを取得するにはどうすればよいですか? また、この更新トークンを再利用して新しいアクセス トークンを取得し、Java API を使用して Google ドライブにアップロードするにはどうすればよいですか? これは Web アプリケーションではありません。それはJava Swingコードにあります。

4

2 に答える 2

0

これは、Google ドライブのドキュメントの基本的な例といくつかの実験から最近作成したソリューションです。IApiKey静的文字列CLIENT_IDなどが含まれています。ITokenPersistenceトークンを(文字列として)ロードおよび保存できるインターフェイスです。アップローダから永続化メカニズム (私は Eclipse e4 RCP アプリケーションの設定を使用しました) を分離します。これは、トークンをファイルに保存するのと同じくらい簡単です。IAthorizationManagerこれは、ユーザーがアクセスを許可し、コードを入力して更新トークンを作成できるようにするために使用されるインターフェイスです。アクセスを許可するブラウザー ウィジェットと、コードをコピーして貼り付けるテキスト ボックスを含むダイアログを実装しました。カスタム例外GoogleDriveExceptionは、API クラスを残りのコードから隠します。

public final class Uploader implements IApiKey {

    public static final String TEXT_PLAIN = "text/plain";

    private final ITokenPersistence tokenManager;
    private final IAuthorizationManager auth;

    public Uploader(final ITokenPersistence tm, final IAuthorizationManager am) {
        this.tokenManager = tm;
        this.auth = am;
    }

    private GoogleCredential createCredentialWithRefreshToken(
            final HttpTransport transport,
            final JsonFactory jsonFactory,
            final String clientId,
            final String clientSecret,
            final TokenResponse tokenResponse) {
        return new GoogleCredential.Builder().setTransport(transport)
                .setJsonFactory(jsonFactory)
                .setClientSecrets(clientId, clientSecret)
                .build()
                .setFromTokenResponse(tokenResponse);
    }

    /**
     * Upload the given file to Google Drive.
     * <P>
     * The name in Google Drive will be the same as the file name.
     * @param fileContent a file of type text/plain
     * @param description a description for the file in Google Drive
     * @return Answer the ID of the uploaded file in Google Drive.
     *         Answer <code>null</code> if the upload failed.
     * @throws IOException
     * @throws {@link GoogleDriveException} when a <code>TokenResponseException</code> had been
     *         intercepted while inserting (uploading) the file.
     */
    public String upload(final java.io.File fileContent, final String description) throws IOException, GoogleDriveException {
        HttpTransport httpTransport = new NetHttpTransport();
        JsonFactory jsonFactory = new JacksonFactory();

        // If we do not already have a refresh token a flow is created to get a refresh token.
        // To get the token the user has to visit a web site and enter the code afterwards
        // The refresh token is saved and may be reused.
        final GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
                httpTransport,
                jsonFactory,
                CLIENT_ID,
                CLIENT_SECRET,
                Arrays.asList(DriveScopes.DRIVE))
        .setAccessType("offline")
        .setApprovalPrompt("auto").build();

        final String url = flow.newAuthorizationUrl().setRedirectUri(REDIRECT_URI).build();
        final String refreshToken = this.tokenManager.loadRefreshToken();

        GoogleCredential credential = null;
        if( refreshToken == null ) {
            // no token available: get one
            String code = this.auth.authorize(url);
            GoogleTokenResponse response = flow.newTokenRequest(code).setRedirectUri(REDIRECT_URI).execute();
            this.tokenManager.saveRefreshToken(response.getRefreshToken());
            credential = this.createCredentialWithRefreshToken(httpTransport, jsonFactory, CLIENT_ID, CLIENT_SECRET, response);
        }
        else {
            // we have a token, if it is expired or revoked by the user the service call (see below) may fail
            credential = new GoogleCredential.Builder()
            .setJsonFactory(jsonFactory)
            .setTransport(httpTransport)
            .setClientSecrets(CLIENT_ID, CLIENT_SECRET)
            .build();
            credential.setRefreshToken(refreshToken);
        }

        //Create a new authorized API client
        final Drive service = new Drive.Builder(httpTransport, jsonFactory, credential)
        .setApplicationName(APP_NAME)
        .build();

        //Insert a file
        final File body = new File();
        body.setTitle(fileContent.getName());
        body.setDescription(description);
        body.setMimeType(TEXT_PLAIN);
        final FileContent mediaContent = new FileContent(TEXT_PLAIN, fileContent);

        try {
            final File file = service.files().insert(body, mediaContent).execute();
            return ( file != null ) ? file.getId() : null;
        } catch (TokenResponseException e) {
            e.printStackTrace();
            throw new GoogleDriveException(e.getDetails().getErrorDescription(), e.getCause());
        }
    }

}

于 2013-07-07T16:42:42.450 に答える