2

次のリンクには、OAuth 2.0 を使用して Google カレンダー API にアクセスするコードがあります。残念ながら、明らかに廃止予定のドラフト 10 クライアント ライブラリを使用しています。

https://developers.google.com/google-apps/calendar/instantiate

最新のクライアント ライブラリは google-api-java-client-1.12.0-beta です。Draft 10 Client Library から多くの変更があり、現在の Client Library 用にこのコードを書き直す方法がわかりません。

非推奨のコードを以下に示します。

import com.google.api.client.auth.oauth2.draft10.AccessTokenResponse;
import   com.google.api.client.googleapis.auth.oauth2.draft10.GoogleAccessProtectedResource;
import com.google.api.client.googleapis.auth.oauth2.draft10.GoogleAccessTokenRequest.GoogleAuthorizationCodeGrant;
import com.google.api.client.googleapis.auth.oauth2.draft10.GoogleAuthorizationRequestUrl;

import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.jackson.JacksonFactory;

import com.google.api.services.calendar.Calendar;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

...

public void setUp() throws IOException {
    HttpTransport httpTransport = new NetHttpTransport();
    JacksonFactory jsonFactory = new JacksonFactory();

    // The clientId and clientSecret are copied from the API Access tab on
    // the Google APIs Console
    String clientId = "YOUR_CLIENT_ID";
    String clientSecret = "YOUR_CLIENT_SECRET";

    // Or your redirect URL for web based applications.
    String redirectUrl = "urn:ietf:wg:oauth:2.0:oob";
    String scope = "https://www.googleapis.com/auth/calendar";

    // Step 1: Authorize -->
    String authorizationUrl = new GoogleAuthorizationRequestUrl(clientId, redirectUrl,   scope)
    .build();

    // Point or redirect your user to the authorizationUrl.
    System.out.println("Go to the following link in your browser:");
    System.out.println(authorizationUrl);

    // Read the authorization code from the standard input stream.
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    System.out.println("What is the authorization code?");
    String code = in.readLine();
    // End of Step 1 <--

   // Step 2: Exchange -->
    AccessTokenResponse response = new GoogleAuthorizationCodeGrant(httpTransport,     jsonFactory,
    clientId, clientSecret, code, redirectUrl).execute();
   // End of Step 2 <--

  GoogleAccessProtectedResource accessProtectedResource = new GoogleAccessProtectedResource(
    response.accessToken, httpTransport, jsonFactory, clientId, clientSecret,
    response.refreshToken);

  Calendar service = new Calendar(httpTransport, accessProtectedResource, jsonFactory);
  service.setApplicationName("YOUR_APPLICATION_NAME");
   ...
}
...

現在のクライアント ライブラリで動作するように、このコードを書き直す方法を誰か教えてもらえますか?

4

1 に答える 1

0

最新の Google Drive API のドキュメントをご覧ください。

https://developers.google.com/drive/credentials

次に、Drive スコープを Calendar スコープに置き換え、Drive サービス オブジェクトの代わりにサービスの正しい Calendar クラスをインスタンス化することは難しくありません。

そのような状況が再び発生した場合、最新バージョンのコード サンプルを確実に見つけるには、Java 用 Google API クライアント ライブラリの Web サイトを直接確認することをお勧めします。auth に関する wikiを見ることができますが、最新バージョンのライブラリでコンパイルして動作していることを確認しているサンプル アプリも見ることができます (すべてのドキュメントを最新の状態に保つのは難しい場合があります)。

于 2012-11-14T14:51:02.563 に答える