草庐IT

android - onConnectionFailed : ConnectionResult. getErrorCode() = 4

coder 2023-12-02 原文

我在这里做 google + integartion。我正在使用以下代码,但我面临的错误是:onConnectionFailed: ConnectionResult.getErrorCode() = 4。所以请任何人帮助我并告诉我我做错了什么这段代码并为我提供解决方案。我将非常感谢你。我搜索了很多但一无所获。我正在使用 Google plus 的快速示例。还有另一个问题,我无法获取生日等个人信息这段代码中的等等。

 public class GooglePlus extends FragmentActivity implements
            ConnectionCallbacks, OnConnectionFailedListener, View.OnClickListener {
        String fb_userId, fb_username;
        SharedPreferences pref;
        SharedPreferences.Editor editor;
        private static final int STATE_DEFAULT = 0;
        private static final int STATE_SIGN_IN = 1;
        private static final int STATE_IN_PROGRESS = 2;

        private static final int RC_SIGN_IN = 0;

        private static final int DIALOG_PLAY_SERVICES_ERROR = 0;

        private static final String SAVED_PROGRESS = "sign_in_progress";

        // GoogleApiClient wraps our service connection to Google Play services and
        // provides access to the users sign in state and Google's APIs.
        private GoogleApiClient mGoogleApiClient;

        // We use mSignInProgress to track whether user has clicked sign in.
        // mSignInProgress can be one of three values:
        //
        // STATE_DEFAULT: The default state of the application before the user
        // has clicked 'sign in', or after they have clicked
        // 'sign out'. In this state we will not attempt to
        // resolve sign in errors and so will display our
        // Activity in a signed out state.
        // STATE_SIGN_IN: This state indicates that the user has clicked 'sign
        // in', so resolve successive errors preventing sign in
        // until the user has successfully authorized an account
        // for our app.
        // STATE_IN_PROGRESS: This state indicates that we have started an intent to
        // resolve an error, and so we should not start further
        // intents until the current intent completes.
        private int mSignInProgress;

        // Used to store the PendingIntent most recently returned by Google Play
        // services until the user clicks 'sign in'.
        private PendingIntent mSignInIntent;

        // Used to store the error code most recently returned by Google Play
        // services
        // until the user clicks 'sign in'.
        private int mSignInError;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_google_plus);
            pref = PreferenceManager.getDefaultSharedPreferences(this);
            if (savedInstanceState != null) {
                mSignInProgress = savedInstanceState.getInt(SAVED_PROGRESS,
                        STATE_DEFAULT);
            }

            mGoogleApiClient = buildGoogleApiClient();

            Handler handle = new Handler();
            handle.postDelayed(new Runnable() {

                @Override
                public void run() {
                    runOnUiThread(new Runnable() {

                        @Override
                        public void run() {
                            // resolveSignInError();

                        }
                    });

                }
            }, 1500);

        }

        private GoogleApiClient buildGoogleApiClient() {
            // When we build the GoogleApiClient we specify where connected and
            // connection failed callbacks should be returned, which Google APIs our
            // app uses and which OAuth 2.0 scopes our app requests.
            return new GoogleApiClient.Builder(this).addConnectionCallbacks(this)
                    .addOnConnectionFailedListener(this).addApi(Plus.API, null)
                    .addScope(Plus.SCOPE_PLUS_LOGIN).build();
        }

        @Override
        protected void onStart() {
            super.onStart();
            mGoogleApiClient.connect();
        }

        @Override
        protected void onStop() {
            super.onStop();

            if (mGoogleApiClient.isConnected()) {
                mGoogleApiClient.disconnect();
            }
        }

        @Override
        protected void onSaveInstanceState(Bundle outState) {
            super.onSaveInstanceState(outState);
            outState.putInt(SAVED_PROGRESS, mSignInProgress);
        }

        @Override
        public void onConnectionFailed(ConnectionResult result) {
            // Refer to the javadoc for ConnectionResult to see what error codes
            // might
            // be returned in onConnectionFailed.
            Log.i("", "onConnectionFailed: ConnectionResult.getErrorCode() = "
                    + result.getErrorCode());

            if (mSignInProgress != STATE_IN_PROGRESS) {
                // We do not have an intent in progress so we should store the
                // latest
                // error resolution intent for use when the sign in button is
                // clicked.
                mSignInIntent = result.getResolution();
                mSignInError = result.getErrorCode();

                if (mSignInProgress == STATE_SIGN_IN) {
                    // STATE_SIGN_IN indicates the user already clicked the sign in
                    // button
                    // so we should continue processing errors until the user is
                    // signed in
                    // or they click cancel.
                    resolveSignInError();
                }
            }

            // In this sample we consider the user signed out whenever they do not
            // have
            // a connection to Google Play services.

        }

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

        }

        /*
         * Starts an appropriate intent or dialog for user interaction to resolve
         * the current error preventing the user from being signed in. This could be
         * a dialog allowing the user to select an account, an activity allowing the
         * user to consent to the permissions being requested by your app, a setting
         * to enable device networking, etc.
         */
        private void resolveSignInError() {
            if (mSignInIntent != null) {
                // We have an intent which will allow our user to sign in or
                // resolve an error. For example if the user needs to
                // select an account to sign in with, or if they need to consent
                // to the permissions your app is requesting.

                try {
                    // Send the pending intent that we stored on the most recent
                    // OnConnectionFailed callback. This will allow the user to
                    // resolve the error currently preventing our connection to
                    // Google Play services.
                    mSignInProgress = STATE_IN_PROGRESS;
                    startIntentSenderForResult(mSignInIntent.getIntentSender(),
                            RC_SIGN_IN, null, 0, 0, 0);
                } catch (SendIntentException e) {
                    Log.i("",
                            "Sign in intent could not be sent: "
                                    + e.getLocalizedMessage());
                    // The intent was canceled before it was sent. Attempt to
                    // connect to
                    // get an updated ConnectionResult.
                    mSignInProgress = STATE_SIGN_IN;
                    mGoogleApiClient.connect();
                }
            } else {
                // Google Play services wasn't able to provide an intent for some
                // error types, so we show the default Google Play services error
                // dialog which may still start an intent on our behalf if the
                // user can resolve the issue.
                showDialog(DIALOG_PLAY_SERVICES_ERROR);
            }
        }

        @SuppressWarnings("unused")
        @Override
        public void onConnected(Bundle arg0) {
            // Reaching onConnected means we consider the user signed in.
            Log.i("onConnected", "onConnected");

            // Retrieve some profile information to personalize our app for the
            // user.
            Person currentUser = Plus.PeopleApi.getCurrentPerson(mGoogleApiClient);

            String personName = currentUser.getDisplayName();
            String personPhotoUrl = currentUser.getImage().getUrl();
            String personGooglePlusProfile = currentUser.getUrl();
            String email = Plus.AccountApi.getAccountName(mGoogleApiClient);

            Log.i("personName", personName);
            Log.i("email", email);
            Log.i("Gender", "" + currentUser.getGender());
            Log.i("Birthday", "" + currentUser.getBirthday());

            // Indicate that the sign in process is complete.
            mSignInProgress = STATE_DEFAULT;

            /*
             * fb_userId = currentUser.getId(); fb_username =
             * currentUser.getDisplayName(); editor = pref.edit();
             * editor.putString("fb_userId", fb_userId);
             * editor.putString("fb_username", fb_username);
             * editor.putString("social_provider", "google +");
             * 
             * editor.putString("gender", currentUser.getGender());
             * editor.putString("birthday", currentUser.getBirthday());
             * 
             * editor.putString("device_name", "android");
             * 
             * editor.putString("email",
             * Plus.AccountApi.getAccountName(mGoogleApiClient)); editor.commit();
             */

        }

        @Override
        public void onConnectionSuspended(int arg0) {
            // The connection to Google Play services was lost for some reason.
            // We call connect() to attempt to re-establish the connection or get a
            // ConnectionResult that we can attempt to resolve.
            mGoogleApiClient.connect();

        }

        @Override
        protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            switch (requestCode) {
            case RC_SIGN_IN:
                if (resultCode == RESULT_OK) {
                    // If the error resolution was successful we should continue
                    // processing errors.
                    mSignInProgress = STATE_SIGN_IN;
                } else {
                    // If the error resolution was not successful or the user
                    // canceled,
                    // we should stop processing errors.
                    mSignInProgress = STATE_DEFAULT;
                }

                if (!mGoogleApiClient.isConnecting()) {
                    // If Google Play services resolved the issue with a dialog then
                    // onStart is not called so we need to re-attempt connection
                    // here.
                    mGoogleApiClient.connect();
                }
                break;
            }
        }

        @Override
        protected Dialog onCreateDialog(int id) {
            switch (id) {
            case DIALOG_PLAY_SERVICES_ERROR:
                if (GooglePlayServicesUtil.isUserRecoverableError(mSignInError)) {
                    return GooglePlayServicesUtil.getErrorDialog(mSignInError,
                            this, RC_SIGN_IN,
                            new DialogInterface.OnCancelListener() {
                                @Override
                                public void onCancel(DialogInterface dialog) {
                                    Log.e("",
                                            "Google Play services resolution cancelled");
                                    mSignInProgress = STATE_DEFAULT;

                                }
                            });
                } else {
                    return new AlertDialog.Builder(this)
                            .setMessage(R.string.play_services_error)
                            .setPositiveButton(R.string.close,
                                    new DialogInterface.OnClickListener() {
                                        @Override
                                        public void onClick(DialogInterface dialog,
                                                int which) {
                                            Log.e("",
                                                    "Google Play services error could not be "
                                                            + "resolved: "
                                                            + mSignInError);
                                            mSignInProgress = STATE_DEFAULT;
                                            // mStatus.setText(R.string.status_signed_out);
                                        }
                                    }).create();
                }
            default:
                return super.onCreateDialog(id);
            }
        }
    }

最佳答案

我遇到了同样的问题。我在 google api 控制台 >> 同意屏幕中解决了问题,并添加了产品名称。

我试试这个教程:http://www.androidhive.info/2014/02/android-login-with-google-plus-account-1/

在主要 Activity 中,您需要将 .addApi(Plus.API, null) 更改为 .addApi(Plus.API, Plus.PlusOptions.builder().build())

关于android - onConnectionFailed : ConnectionResult. getErrorCode() = 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24263974/

有关android - onConnectionFailed : ConnectionResult. getErrorCode() = 4的更多相关文章

  1. 安卓apk修改(Android反编译apk) - 2

    最近因为项目需要,需要将Android手机系统自带的某个系统软件反编译并更改里面某个资源,并重新打包,签名生成新的自定义的apk,下面我来介绍一下我的实现过程。APK修改,分为以下几步:反编译解包,修改,重打包,修改签名等步骤。安卓apk修改准备工作1.系统配置好JavaJDK环境变量2.需要root权限的手机(针对系统自带apk,其他软件免root)3.Auto-Sign签名工具4.apktool工具安卓apk修改开始反编译本文拿Android系统里面的Settings.apk做demo,具体如何将apk获取出来在此就不过多介绍了,直接进入主题:按键win+R输入cmd,打开命令窗口,并将路

  2. Android Studio开发之使用内容组件Content获取通讯信息讲解及实战(附源码 包括添加手机联系人和发短信) - 2

    运行有问题或需要源码请点赞关注收藏后评论区留言一、利用ContentResolver读写联系人在实际开发中,普通App很少会开放数据接口给其他应用访问。内容组件能够派上用场的情况往往是App想要访问系统应用的通讯数据,比如查看联系人,短信,通话记录等等,以及对这些通讯数据及逆行增删改查。首先要给AndroidMaifest.xml中添加响应的权限配置 下面是往手机通讯录添加联系人信息的例子效果如下分成三个步骤先查出联系人的基本信息,然后查询联系人号码,再查询联系人邮箱代码 ContactAddActivity类packagecom.example.chapter07;importandroid

  3. Android 10.0 设置默认launcher后安装另外launcher后默认Launcher失效的功能修复 - 2

    1.前言 在10.0的系统rom定制化开发中,在系统中有多个launcher的时候,会在开机进入launcher的时候弹窗launcher列表,让用户选择进入哪个launcher,这样显得特别的不方便所以产品开发中,要求用RoleManager的相关api来设置默认Launcher,但是在设置完默认Launcher以后,在安装一款Launcher的时候,默认Launcher就会失效,在系统设置的默认应用中Launcher选项就为空,点击home键的时候会弹出默认Launcher列表,让选择进入哪个默认Launcher.所以需要从安装Launcher的流程来分析相关的设置。来解决问题设置默认La

  4. AiBote 2022 新研发的自动化框架,支持 Android 和 Windows 系统。速度非常快 - 2

    Ai-Bot基于流行的Node.js和JavaScript语言的一款新自动化框架,支持Windows和Android自动化。1、Windowsxpath元素定位算法支持支持Windows应用、.NET、WPF、Qt、Java和Electron客户端程序和ie、edgechrome浏览器2、Android支持原生APP和H5界面,元素定位速度是appium十倍,无线远程自动化操作多台安卓设备3、基于opencv图色算法,支持找图和多点找色,1080*2340全分辨率找图50MS以内4、内置免费OCR人工智能技术,无限制获取图片文字和找字功能。5、框架协议开源,除官方node.jsSDK外,用户可

  5. Android Gradle 7.1+新版本依赖变化 - 2

    前一段时间由于工作需要把可爱的小雪狐舍弃了,找到了小蜜蜂。但是新版本的小蜜蜂出现了很多和旧版本不一样的位置。1.功能位置迁移,原来在工程build.gradle的buildscript和allprojects移动至setting.gradle并改名为pluginManagement和dependencyResolutionManagement。里面的东西依旧可以按照原来的copy过来。pluginManagement{repositories{gradlePluginPortal()google()mavenCentral()}}dependencyResolutionManagement{r

  6. ruby - Ruboto 的最佳教程(适用于 Android 的 ruby​​)? - 2

    关闭。这个问题不符合StackOverflowguidelines.它目前不接受答案。要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于StackOverflow来说是偏离主题的,因为它们往往会吸引自以为是的答案和垃圾邮件。相反,describetheproblem以及迄今为止为解决该问题所做的工作。关闭9年前。Improvethisquestion我几乎用完了Ruby,但现在想试试Ruboto,android上的ruby​​。谷歌未能给我足够的(几乎没有结果)。所以任何人都可以分享一些关于Ruboto的教程。

  7. Android Studio 解决Could not resolve com.android.tools.build:gradle:7.4.2问题 - 2

    Aproblemoccurredconfiguringrootproject'MyApplication2'.>Couldnotresolveallfilesforconfiguration':classpath'.  >Couldnotresolvecom.android.tools.build:gradle:7.4.2.   Requiredby:     project:>com.android.application:com.android.application.gradle.plugin:7.4.2     project:>com.android.library:com.andr

  8. Android对话框的详细介绍(提示对话框,自定义对话框) - 2

    简介:我们都知道在Android开发中,当我们的程序在与用户交互时,用户会得到一定的反馈,其中以对话框的形式的反馈还是比较常见的,接下来我们来介绍几种常见的对话框的基本使用。前置准备:(文章最后附有所有代码)我们首先先写一个简单的页面用于测试这几种Dialog(对话框)代码如下,比较简单,就不做解释了一、提示对话框(即最普通的对话框)首先我们给普通对话框的按钮设置一个点击事件,然后通过AlertDialog.Builder来构造一个对象,为什么不直接Dialog一个对象,是因为Dialog是一个基类,我们尽量要使用它的子类来进行实例化对象,在实例化对象的时候,需要将当前的上下文传过去,因为我这

  9. android 多屏幕显示activity,副屏,无线投屏 - 2

    目录1.首先,需要一个副屏1.1可以通过代码的形式自己创建VirtualDispaly,创建副屏。1.2或者,在手机的开发者模式中直接开启模拟副屏,也是可以的。2.0怎么利用这个副屏幕?2.1 用作presentation演示ppt:2.2克隆主屏幕的内容,就是主屏幕显示什么,副屏显示同样的内容,镜像模式。2.3 将一个activity从第二个屏幕上启动,作为一个独立的屏幕首先说明一下这个多屏幕的概念,这里不是指分屏显示。分屏显示:是一个屏幕分出多个窗口,分别显示不同app.多屏支持:是一个设备有多个屏幕,怎么让不同的屏幕显示不同的app,或者是一个app同时用两个屏幕来显示不同的页面内容。多

  10. 【Android】获取TextView宽度或高度 - 2

    需要提前知道的一些东西Android中获取View的宽度或者高度,可以通过View自带的方法getWidth()、getHeight(),但这仅限于layout_width和layout_height的值是具体的dp或者match_parent,如果值是wrap_content,那么直接调用getWidth()、getHeight()方法,可能返回的会是0。直接调用getWidth()、getHeight()可能返回0的原因是,View可能还没有被添加到界面上(这里添加到界面上是指View执行了onMeasure方法),View添加到界面上之后,才计算完宽度和高度,所以如果宽度或高度如果设置w

随机推荐