我正在开发我在我的应用中集成Google云端硬盘的应用程序。下面是我的代码,我只是从示例代码中复制,但在与Google云端硬盘连接时出现异常。
异常:onConnectionFailed()方法中的ConnectionResult{statusCode=INTERNAL_ERROR, resolution=null}
。
请大家分享您的观点。
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.");
}
}
答案 0 :(得分:25)
抬头!开发人员控制台出现问题。
如果您在1)确保已使用相应的证书指纹注册包名称后仍然收到此错误,并且2)正在(重新)使用已存在的项目,然后您应检查此项目是否具有产品名称和电子邮件地址(双检查一个与之相关的特殊情况,两者都可以在" 同意屏幕"部分。
非常旧的项目可能没有填充这两个字段。较新的项目会在这些字段中填入一些默认值。
花了一天时间才找到这个...
答案 1 :(得分:10)
我通过在API控制台上按照以下步骤签署我的Google云端硬盘应用程序来解决此问题
如果您的申请需要提交授权请求:
答案 2 :(得分:9)
我通过注册应用程序并生成签名证书指纹解决了这个问题。
我按照上面的链接解决了我的问题。
答案 3 :(得分:4)
对我来说问题是,在示例中有:
.addApi(Drive.API)
我没有在控制台中添加驱动器api
此错误消息帮助我找出了问题
com.google.android.gms.drive.auth.c:授权失败:服务器 返回错误:未配置访问权限。您的API未启用 项目,或配置了每IP或每个Referer限制 您的API密钥和请求与这些限制不匹配。请 使用Google Developers Console更新您的配置..请参阅 https://developers.google.com/drive/handle-errors了解详情。
答案 4 :(得分:4)
不要忘记权限:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
答案 5 :(得分:3)
你在logcat中有任何错误消息吗?连接失败的最可能原因是您未在云控制台中正确设置应用程序。
答案 6 :(得分:2)
在我的情况下,我必须更改客户端ID以使用构建GoogleApiClient对象的活动类的确切包名称,而不是更高级别的包。
答案 7 :(得分:2)
我也遇到了同样的错误。 对于我的项目,在API和API下未启用Drive API。 auth - &gt;蜜蜂。 启用此Drive API后,此问题已得到解决。
答案 8 :(得分:1)
我解决了将这一行添加到gradle:
compile 'com.google.android.gms:play-services-identity:8.1.0'
答案 9 :(得分:0)
您需要有两个单独的客户端ID,一个用于调试,另一个用于发布。 有时候我们会想念明显的。
答案 10 :(得分:0)
在Android Studio中转到
工具 - &GT; Android-SDK Manager - &gt; Google Play服务
更新 Google Play服务 ..我相信它会起作用
答案 11 :(得分:0)
当我将现有的应用程序从Eclipse移动到Android工作室时,我遇到了与上面相同的问题。我的问题是我将applicationId命名为与包ID不同。将applicationId更改为与包名相同可以解决问题。
答案 12 :(得分:0)
我遇到了同样的问题。我的登录正常,但突然停止了工作。我尝试了这里提到的所有解决方案。但是并没有解决我的问题。但是,禁用谷歌登录并启用它可以解决我的问题。因此,只需转到Firebase控制台,选择身份验证> 登录方法> google >单击编辑> < strong>禁用和启用。