2019-03-20 Android 第三方登錄集-Google 登錄集成整理

Google+登錄集成 點擊按鈕標(biāo)準(zhǔn)式配置

1.請科學(xué)打開官網(wǎng)地址

WechatIMG16.jpeg

  1. Add Google Play services

In your project's top-level build.gradle file, ensure that Google's Maven repository is included:

allprojects {
    repositories {
        google()

        // If you're using a version of Gradle lower than 4.1, you must instead use:
        // maven {
        //     url 'https://maven.google.com'
        // }
    }
}

Then, in your app-level build.gradle file, declare Google Play services as a dependency:

    implementation 'com.google.android.gms:play-services-auth:16.0.1'

檢查AS是否下載Google Play services
WechatIMG17.jpeg
  1. 在 Activity 類 onCreate()方法 中添加如下配置
    In your sign-in activity's onCreate method, configure Google Sign-In to request the user data required by your app. For example, to configure Google Sign-In to request users' ID and basic profile information, create aGoogleSignInOptions object with the DEFAULT_SIGN_IN parameter. To request users' email addresses as well, create the GoogleSignInOptions object with the requestEmail option.
// Configure sign-in to request the user's ID, email address, and basic
// profile. ID and basic profile are included in DEFAULT_SIGN_IN.
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
        .requestEmail()
        .build();

// Build a GoogleSignInClient with the options specified by gso.
mGoogleSignInClient = GoogleSignIn.getClient(this, gso);

If you need to request additional scopes to access Google APIs, specify them with requestScopes. For the best user experience, on sign-in, only request the scopes that are required for your app to minimally function. Request any additional scopes only when you need them, so that your users see the consent screen in the context of an action they performed. See Requesting Additional Scopes.

4.onStart() 方法中檢查 是否已經(jīng)登錄

In your activity's onStart method, check if a user has already signed in to your app with Google.

// Check for existing Google Sign In account, if the user is already signed in
// the GoogleSignInAccount will be non-null.
GoogleSignInAccount account = GoogleSignIn.getLastSignedInAccount(this);
// 已登錄 account 不為空
  1. layout 文件中添加googleButton 使用自己寫的也是可以的弧腥。
<com.google.android.gms.common.SignInButton
 android:id="@+id/sign_in_button"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content" />

6.點擊事件
In the activity's onClick method, handle sign-in button taps by creating a sign-in intent with the getSignInIntent method, and starting the intent with startActivityForResult

@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.sign_in_button:
            signIn();
            break;
    }
}

private void signIn() {
    Intent signInIntent = mGoogleSignInClient.getSignInIntent();
    startActivityForResult(signInIntent, RC_SIGN_IN);
}
  1. onActivityResult() 方法中添加回調(diào)
    After the user signs in, you can get a GoogleSignInAccount object for the user in the activity's onActivityResult method.
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    // Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
    if (requestCode == RC_SIGN_IN) {
        // The Task returned from this call is always completed, no need to attach
        // a listener.
        Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
        handleSignInResult(task);
    }
}

private void handleSignInResult(Task<GoogleSignInAccount> completedTask) {
    try {
        GoogleSignInAccount account = completedTask.getResult(ApiException.class);

        // Signed in successfully, show authenticated UI.
        updateUI(account);
    } catch (ApiException e) {
        // The ApiException status code indicates the detailed failure reason.
        // Please refer to the GoogleSignInStatusCodes class reference for more information.
        Log.w(TAG, "signInResult:failed code=" + e.getStatusCode());
        updateUI(null);
    }
}

到此Google 第三方登錄已集成完畢丹锹!
附:完整代碼

/**
 *  @author BuMingYang
 *  @des 谷歌登錄
 */
class GoogleLogin(private var context: Activity) {

    private var mGoogleSignInClient: GoogleSignInClient? = null
    private var googleListener: GoogleListener? = null


    private val RC_SIGN_IN = 9001

    init {

        val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
                .requestEmail()
                .build()

        mGoogleSignInClient = GoogleSignIn.getClient(context, gso)


    }

    //google
    fun signIn() {

        val signInIntent = mGoogleSignInClient?.signInIntent
        context.startActivityForResult(signInIntent, RC_SIGN_IN)
    }

    fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {

        if (requestCode === RC_SIGN_IN) {
            val task = GoogleSignIn.getSignedInAccountFromIntent(data)
            handleSignInResult(task)
        }

    }

    private fun handleSignInResult(completedTask: Task<GoogleSignInAccount>) {
        try {
            var account: GoogleSignInAccount? = completedTask.getResult(ApiException::class.java)
            // Signed in successfully, show authenticated UI.
            googleListener?.onGoogleSuccess("${account?.id}")

        } catch (e: ApiException) {
            Log.e("Login", "signInResult:failed code=" + e.statusCode)
            context.showSnackMsg("signInResult:failed code=${e.statusCode}")
        }
    }

    fun setGoogleListener(googleListener: GoogleListener) {

        this.googleListener = googleListener
    }

    interface GoogleListener {

        /**
         * 登錄成功
         * @param id
         */
        fun onGoogleSuccess(id: String)
    }

Activity 中使用 (項目代碼 避免嫌疑 提供主要使用地方)

      
//初始化
googleLogin = GoogleLogin(this)
//添加回調(diào)事件 復(fù)寫成功請求方法
googleLogin?.setGoogleListener(this)
// 登錄事件方法中調(diào)用
googleLogin?.signIn()
//onActivityResult 方法中添加
googleLogin?.onActivityResult(requestCode, resultCode, data)

參考DEMO

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末谢肾,一起剝皮案震驚了整個濱河市译暂,隨后出現(xiàn)的幾起案子仔粥,更是在濱河造成了極大的恐慌乓搬,老刑警劉巖商源,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件磺送,死亡現(xiàn)場離奇詭異驻子,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)估灿,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進(jìn)店門崇呵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人馅袁,你說我怎么就攤上這事演熟。” “怎么了?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵芒粹,是天一觀的道長兄纺。 經(jīng)常有香客問我,道長化漆,這世上最難降的妖魔是什么估脆? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮座云,結(jié)果婚禮上疙赠,老公的妹妹穿的比我還像新娘。我一直安慰自己朦拖,他們只是感情好圃阳,可當(dāng)我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著璧帝,像睡著了一般捍岳。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上睬隶,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天锣夹,我揣著相機(jī)與錄音,去河邊找鬼苏潜。 笑死银萍,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的恤左。 我是一名探鬼主播贴唇,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼飞袋!你這毒婦竟也來了滤蝠?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤授嘀,失蹤者是張志新(化名)和其女友劉穎物咳,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蹄皱,經(jīng)...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡览闰,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了巷折。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片压鉴。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖锻拘,靈堂內(nèi)的尸體忽然破棺而出油吭,到底是詐尸還是另有隱情击蹲,我是刑警寧澤,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布婉宰,位于F島的核電站歌豺,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏心包。R本人自食惡果不足惜类咧,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蟹腾。 院中可真熱鬧痕惋,春花似錦、人聲如沸娃殖。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽炉爆。三九已至堕虹,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間叶洞,已是汗流浹背鲫凶。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工禀崖, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留衩辟,地道東北人。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓波附,卻偏偏與公主長得像艺晴,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子掸屡,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內(nèi)容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi閱讀 7,322評論 0 10
  • 今天星期天本來是上畫畫的封寞,畫畫課取消了,今天沒特長課仅财,不用這么忙活了狈究,小雨睡到自然醒,醒來在客廳看電視盏求,昨晚...
    小雨兒的媽媽閱讀 236評論 0 1
  • 那一天我準(zhǔn)備踏上火車 回到我生長的地方 轉(zhuǎn)過身看著這個擁擠的城市 突然才發(fā)現(xiàn) 我愛上這里的你早已足夠了兩年 平平淡...
    子遇煙閱讀 217評論 0 1
  • 今天天氣很好碎罚。天藍(lán)氣清磅废。這應(yīng)該是我自己最喜歡的天氣。 現(xiàn)在漸漸的事情在進(jìn)入正規(guī)荆烈,突然間有一種不管遇見什么樣的事情自...
    不完美的你我他閱讀 209評論 0 0
  • 周六拯勉,小六晚上一直沒吃飯竟趾,終于找到了一家面館,要了碗油潑面宫峦,端上來時辣椒油的香味撲入鼻腔岔帽。 小六又加了一勺,猶豫著...
    謝沛霖閱讀 227評論 0 1