アプリにGoogleドライブを統合するアプリケーションを開発しています。以下はサンプルコードからコピーしたコードですが、Googleドライブに接続すると例外が発生します。
例外:ConnectionResult{statusCode=INTERNAL_ERROR, resolution=null}
onConnectionFailed()メソッドで。
皆さんの意見を共有してください。
public class MainActivity extends Activity implements ConnectionCallbacks,
OnConnectionFailedListener {
private static final String TAG = "Android-drive-quickstart";
private static final int REQUEST_CODE_CAPTURE_IMAGE = 1;
private static final int REQUEST_CODE_CREATOR = 2;
private static final int REQUEST_CODE_RESOLUTION = 3;
private GoogleApiClient mGoogleApiClient;
private Bitmap mBitmapToSave;
/**
* Create a new file and save it to Drive.
*/
private void saveFileToDrive() {
// Start by creating a new contents, and setting a callback.
Log.i(TAG, "Creating new contents.");
final Bitmap image = mBitmapToSave;
Drive.DriveApi.newContents(mGoogleApiClient).addResultCallback(new OnNewContentsCallback() {
@Override
public void onNewContents(ContentsResult result) {
// If the operation was not successful, we cannot do anything
// and must
// fail.
if (!result.getStatus().isSuccess()) {
Log.i(TAG, "Failed to create new contents.");
return;
}
// Otherwise, we can write our data to the new contents.
Log.i(TAG, "New contents created.");
// Get an output stream for the contents.
OutputStream outputStream = result.getContents().getOutputStream();
// Write the bitmap data from it.
ByteArrayOutputStream bitmapStream = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.PNG, 100, bitmapStream);
try {
outputStream.write(bitmapStream.toByteArray());
} catch (IOException e1) {
Log.i(TAG, "Unable to write file contents.");
}
// Create the initial metadata - MIME type and title.
// Note that the user will be able to change the title later.
MetadataChangeSet metadataChangeSet = new MetadataChangeSet.Builder()
.setMimeType("image/jpeg").setTitle("Android Photo.png").build();
// Create an intent for the file chooser, and start it.
IntentSender intentSender = Drive.DriveApi
.newCreateFileActivityBuilder()
.setInitialMetadata(metadataChangeSet)
.setInitialContents(result.getContents())
.build(mGoogleApiClient);
try {
startIntentSenderForResult(
intentSender, REQUEST_CODE_CREATOR, null, 0, 0, 0);
} catch (SendIntentException e) {
Log.i(TAG, "Failed to launch file chooser.");
}
}
});
}
@Override
protected void onResume() {
super.onResume();
if (mGoogleApiClient == null) {
// Create the API client and bind it to an instance variable.
// We use this instance as the callback for connection and connection
// failures.
// Since no account name is passed, the user is prompted to choose.
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
}
// Connect the client. Once connected, the camera is launched.
mGoogleApiClient.connect();
}
@Override
protected void onPause() {
if (mGoogleApiClient != null) {
mGoogleApiClient.disconnect();
}
super.onPause();
}
@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
switch (requestCode) {
case REQUEST_CODE_CAPTURE_IMAGE:
// Called after a photo has been taken.
if (resultCode == Activity.RESULT_OK) {
// Store the image data as a bitmap for writing later.
mBitmapToSave = (Bitmap) data.getExtras().get("data");
}
break;
case REQUEST_CODE_CREATOR:
// Called after a file is saved to Drive.
if (resultCode == RESULT_OK) {
Log.i(TAG, "Image successfully saved.");
mBitmapToSave = null;
// Just start the camera again for another photo.
startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE),
REQUEST_CODE_CAPTURE_IMAGE);
}
break;
}
}
@Override
public void onConnectionFailed(ConnectionResult result) {
// Called whenever the API client fails to connect.
Log.i(TAG, "GoogleApiClient connection failed: " + result.toString());
if (!result.hasResolution()) {
// show the localized error dialog.
GooglePlayServicesUtil.getErrorDialog(result.getErrorCode(), this, 0).show();
return;
}
// The failure has a resolution. Resolve it.
// Called typically when the app is not yet authorized, and an
// authorization
// dialog is displayed to the user.
try {
result.startResolutionForResult(this, REQUEST_CODE_RESOLUTION);
} catch (SendIntentException e) {
Log.e(TAG, "Exception while starting resolution activity", e);
}
}
@Override
public void onConnected(Bundle connectionHint) {
Log.i(TAG, "API client connected.");
if (mBitmapToSave == null) {
// This activity has no UI of its own. Just start the camera.
startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE),
REQUEST_CODE_CAPTURE_IMAGE);
return;
}
saveFileToDrive();
}
@Override
public void onDisconnected() {
Log.i(TAG, "API client disconnected.");
}
}
アプリケーションを登録して署名証明書のフィンガープリントを生成することで問題を解決しました。
上記のリンクをたどると、問題が解決しました。
Heads up! Developers Consoleに問題があります。
1)の後でもこのバグが発生する場合は、パッケージ名が対応する証明書フィンガープリントに登録されていることを確認し、 2)すでに使用されているプロジェクトを(再)使用していますthenこのプロジェクトが製品名であることを確認する必要があります電子メールアドレス(1つは特別に確認してください)。これは "同意画面"セクションにあります。
非常に古いプロジェクトでは、これら2つのフィールドにデータが入力されていない可能性があります。新しいプロジェクトでは、これらのフィールドにいくつかのデフォルト値が入力されています。
これを見つけるのに一日かかった...
この問題を解決するには、次の手順に従ってAPIコンソールでGoogleドライブアプリケーションに署名します
アプリケーションが承認済みリクエストを送信する必要がある場合:
私にとっての問題は、例にあるとき:
.addApi(Drive.API)
そして、コンソールにドライブAPIを追加しませんでした
このエラーメッセージは私が問題を理解するのに役立ちました
com.google.Android.gms.drive.auth.c:承認に失敗しました:サーバーがエラーを返しました:アクセスが構成されていません。プロジェクトでAPIが有効になっていないか、APIキーにIPごとまたはリファラーごとの制限が構成されており、リクエストがこれらの制限に一致しません。 Google Developers Consoleを使用して構成を更新してください。詳細は https://developers.google.com/drive/handle-errors を参照してください。
権限を忘れないでください:
<uses-permission Android:name="Android.permission.INTERNET" />
<uses-permission Android:name="Android.permission.ACCESS_NETWORK_STATE" />
<uses-permission Android:name="Android.permission.GET_ACCOUNTS" />
Logcatにエラーメッセージはありますか?接続が失敗する最も可能性の高い原因は、クラウドコンソールでアプリを適切にセットアップしていないことです。
こちらの手順をご覧ください https://developers.google.com/drive/Android/auth
私の場合、クライアントIDを変更して、上位レベルのパッケージではなく、GoogleApiClientオブジェクトを構築するアクティビティクラスの正確なパッケージ名を使用する必要がありました。
私も同じエラーが出ました。私のプロジェクトでは、APIと認証-> APIでドライブAPIが有効になっていませんでした。このドライブAPIを有効にした後、この問題は解決されました。
私はこの行をgradleに追加することを解決しました:
compile 'com.google.Android.gms:play-services-identity:8.1.0'
Androidスタジオで
ツール-> Android-SDKマネージャー-> Google Playサービス
更新します Google Playサービス・・きっとうまくいく
同じ問題が発生しました。サインインは機能していましたが、突然機能しなくなりました。ここで言及されているすべての解決策を試しました。しかし、私の問題は解決しませんでした。しかし、Googleサインインを無効にして有効にすると、私の問題は解決しました。そのため、Firebaseコンソールに移動し、Authentication> Sign-in Methods> google> select Edit>-を選択しますdisableおよびenable。
2つの個別のクライアントIDが必要です。1つはデバッグ用、もう1つはリリース用です。時々私達は明白を逃します。
既存のアプリケーションをEclipseからAndroid studio。に移動したときに同じ問題が発生しました。私の問題は、アプリケーションIDにパッケージIDとは異なる名前を付けたことです。applicationIdをパッケージ名は問題を解決しました。