Google Play サービスで認証すると、すべてが機能します。
String token = GoogleAuthUtil.getToken(mActivity, mEmail, "oauth2:" + DriveScopes.Drive);
トークンを使用して、ドライブ インスタンスを作成し、Google ドライブにアクセスできるようになりました。しかし、これは Android 2.2 以降でのみサポートされていることに気付きました。Android 2.1 をサポートする必要があります。
このコードを使用してトークンを取得しようとしました:
AccountManager am = AccountManager.get(this);
Bundle options = new Bundle();
am.getAuthToken (
account,
"oauth2:" + DriveScopes.Drive,
options,
this,
new OnTokenAcquired(this),
null);
このコードを使用するとトークンを取得できますが、それを使用してドライブ インスタンスを作成すると、Google ドライブにアクセスできません。たとえば、次のコードを実行すると:
drive.files().list().setQ(trashed=false and title="'someTitle'").execute();
次のエラーが表示されます。
com.google.api.client.googleapis.json.GoogleJsonResponseException: 401 Unauthorized
{
"code" : 401,
"errors" : [ {
"domain" : "global",
"location" : "Authorization",
"locationType" : "header",
"message" : "Invalid Credentials",
"reason" : "authError"
} ],
"message" : "Invalid Credentials"
}
これは、私のドライブ インスタンスを作成する方法です。
HttpTransport httpTransport = new NetHttpTransport();
JacksonFactory jsonFactory = new JacksonFactory();
Drive.Builder b = new Drive.Builder(httpTransport, jsonFactory, null);
b.setJsonHttpRequestInitializer(new JsonHttpRequestInitializer() {
public void initialize(JsonHttpRequest request) throws IOException {
DriveRequest driveRequest = (DriveRequest) request;
driveRequest.setPrettyPrint(true);
driveRequest.setKey(CLIENT_ID);
driveRequest.setOauthToken(token);
driveRequest.setEnableGZipContent(true);
}
});
drive = b.build();