Google Drive Android API ConnectionResult错误

时间:2015-04-17 03:39:55

标签: android android-studio google-drive-api google-drive-android-api

我正在开发一款应用,我正在将Google Drive Android API集成到其中。我有一个主要活动,然后打开一个片段,导致谷歌驱动器。但是,当我尝试登录时(无论是什么gmail帐户,我都尝试过现有的,创建新的,无论如何)我得到ConnectionResult错误代码17 SIGN_IN_FAILED。该应用已在开发者控制台中获得授权,并且已启用Drive API。我不知道还能做什么。

以下是相关代码:

public class FileSharingFragment extends Fragment implements
    GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (mGoogleApiClient == null) {
            mGoogleApiClient = new GoogleApiClient.Builder(getActivity())
                .addApi(Drive.API)
                .addScope(Drive.SCOPE_FILE)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .build();
        }
        mGoogleApiClient.connect();
    }

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View rootView = inflater.inflate(R.layout.fragment_file_sharing, container, false);
    users = (TextView) rootView.findViewById(R.id.users);
    getActivity().setTitle("Files");
    return rootView;
}

    @Override
public void onActivityResult(int requestCode, int resultCode,
                                Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == REQUEST_CODE_RESOLUTION && resultCode == Activity.RESULT_OK) {
        mGoogleApiClient.connect();
    }
}

@Override
public void onConnectionFailed(ConnectionResult result) {
    Log.i(TAG, "GoogleApiClient connection failed: " + result.toString());
    if (!result.hasResolution()) {
        // show the localized error dialog.
        GooglePlayServicesUtil.getErrorDialog(result.getErrorCode(), getActivity(), 0).show();
        Log.i("file sharing fragment", "error code " + result.getErrorCode());
        return;
    }
    try {
        result.startResolutionForResult(getActivity(), REQUEST_CODE_RESOLUTION);
    } catch (IntentSender.SendIntentException e) {
        Log.e(TAG, "Exception while starting resolution activity", e);
    }
}

从我使用的主要活动中调用它

Fragment fragment = FileSharingFragment.newInstance();
FragmentManager fragmentManager = getFragmentManager();
        fragmentManager.beginTransaction().replace(R.id.content_frame, fragment).commit();

我不能为我的生活弄清楚为什么它不会让我登录。

5 个答案:

答案 0 :(得分:1)

您现在可能知道您的getExternalCacheDir()需要3件事:

1 / SHA1 of yout APK
2 /您的包裹名称
3 /同意屏幕中的您的电子邮件/产品名称

假设那里的一切都很好,这里是我经常使用的最后一次双重检查:
- 使用unzipper(如7zip)打开(解压缩)xxxx.APK,找到CERT.RSA。
- 运行' keytool -printcert -file ......... \ CERT.RSA'
返回控制台并再次比较SHA1。

祝你好运

答案 1 :(得分:1)

看起来很明显,但如果您在开发者控制台上输入了指纹并在那里设置了API,并且仍在SIGN_IN_FAILED,请确保您实际使用的是已签名的APK!

从Gradle运行installDebug并忘记,这太容易了。当我使用Google SDK时,我经常在Android Studio中设置它并浏览菜单( Build > Generate Signed APK ...

答案 2 :(得分:0)

通过Google Developers Console转到API&验证 - >凭据并检查包名称与应用程序包名称完全相同。

答案 3 :(得分:0)

确保您已生成OAuth 2.0客户端ID而非普通API密钥

根据Google docs for youtube API - 您的应用程序必须发送OAuth 2.0令牌以及访问私有用户数据的任何请求

答案 4 :(得分:0)

尝试卸载应用程序并全面启动调试过程(如果您使用的是debug.keystore。