3

Google クライアント ライブラリの代わりに Java Jersey を使用して Google File API にアクセスしようとしていますが、「401 Unauthorized」という応答ステータスが返され続けます。呼び出しを行う前に、Oauth を使用して Google からアクセス トークンを取得しました。

public static String getGoogleFileResource(final String fileId,
        final String accessToken) {
    //projection

    ClientConfig cc = new DefaultClientConfig();
    cc.getProperties().put(ClientConfig.PROPERTY_FOLLOW_REDIRECTS, true);
    Client client = Client.create(cc);

    String url = String
            .format("https://www.googleapis.com/drive/v2/files/%s?fields=downloadUrl&key=%s",
                    fileId, GoogleClientConstants.GOOGLE_api_key);
    WebResource webResource = client.resource(url);

    String response = webResource
            .accept(MediaType.APPLICATION_JSON_TYPE,
                    MediaType.APPLICATION_XML_TYPE)
            .header("Authorization", "Bearer " + accessToken)
            .get(String.class);

    logger.info("Authorization - " + "Bearer " + accessToken);
    logger.info(" reponse " + response);
    return response;
}

私は何を間違っていますか?

4

1 に答える 1

0

アクセス トークンを http リクエスト ヘッダーに追加する必要があることがわかりました。

Google デベロッパー ガイド: 「ファイルのアップロード」

https://developers.google.com/drive/manage-uploads

次のような投稿リクエストを送信する必要があります。

POST /upload/drive/v2/files?uploadType=media HTTP/1.1
Host: www.googleapis.com
Content-Type: image/jpeg
Content-Length: number_of_bytes_in_JPEG_file
Authorization: your_auth_token

JPEG data

ヘッダーに your_auth_token を入れる必要があることに注意してください

于 2013-08-06T07:05:17.250 に答える