溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android實(shí)現(xiàn)QQ登錄功能

發(fā)布時(shí)間:2020-09-01 12:30:50 來源:腳本之家 閱讀:194 作者:程澤翔 欄目:移動(dòng)開發(fā)

QQ登錄是一個(gè)非常簡(jiǎn)單的一個(gè)第三方應(yīng)用,現(xiàn)在,我們就來實(shí)現(xiàn)一個(gè)QQ登錄
首先下載兩個(gè)jar包   這里上傳不了jar包,所以可以到我的github中下載工程中l(wèi)ibs中的兩個(gè)jar包

網(wǎng)址:https://github.com/chengzexiang/qqlogin

打代碼前,先把這些東西寫上:

private static final String TAG = "MainActivity"; 
private static final String APP_ID = "1105602574";//官方獲取的APPID 
private Tencent mTencent; 
private BaseUiListener mIUiListener; 
private UserInfo mUserInfo; 

在AndroidManifest.xml中加入權(quán)限  

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
 <!-- 注冊(cè)SDKActivity --> 
  <activity 
   android:name="com.tencent.tauth.AuthActivity" 
   android:launchMode="singleTask" 
   android:noHistory="true" > 
   <intent-filter> 
    <action android:name="android.intent.action.VIEW" /> 
    <category android:name="android.intent.category.DEFAULT" /> 
    <category android:name="android.intent.category.BROWSABLE" /> 
    <data android:scheme="tencent1105602574" /> <!-- 開放平臺(tái)獲取的APPID --> 
   </intent-filter> 
  </activity> 
  <activity android:name="com.tencent.connect.common.AssistActivity" 
   android:theme="@android:style/Theme.Translucent.NoTitleBar" 
   android:screenOrientation="portrait"/> 

 Xml布局中的

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
 xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:app="http://schemas.android.com/apk/res-auto" 
 android:orientation="vertical" 
 xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" 
 android:layout_height="match_parent" tools:context="com.bwei.czx.czx0914qq.MainActivity"> 
 
 <Button 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="登錄" 
  android:id="@+id/login"/> 
 <TextView 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:id="@+id/name"/> 
 <ImageView 
  android:layout_width="100dp" 
  android:layout_height="80dp" 
  android:id="@+id/img"/> 
 
</LinearLayout> 

下面開始MainActivity中的代碼

package com.bwei.czx.czx0914qq; 
 
import android.content.Intent; 
import android.os.Bundle; 
import android.support.v7.app.AppCompatActivity; 
import android.util.Log; 
import android.view.View; 
import android.widget.Button; 
import android.widget.ImageView; 
import android.widget.TextView; 
import android.widget.Toast; 
 
import com.nostra13.universalimageloader.core.ImageLoader; 
import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; 
import com.tencent.connect.UserInfo; 
import com.tencent.connect.auth.QQToken; 
import com.tencent.connect.common.Constants; 
import com.tencent.tauth.IUiListener; 
import com.tencent.tauth.Tencent; 
import com.tencent.tauth.UiError; 
 
import org.json.JSONException; 
import org.json.JSONObject; 
 
public class MainActivity extends AppCompatActivity { 
 private static final String TAG = "MainActivity"; 
 private static final String APP_ID = "1105602574";//官方獲取的APPID 
 private Tencent mTencent; 
 private BaseUiListener mIUiListener; 
 private UserInfo mUserInfo; 
 private Button login; 
 private TextView name; 
 private ImageView img; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_main); 
  //傳入?yún)?shù)APPID和全局Context上下文 
  mTencent = Tencent.createInstance(APP_ID, MainActivity.this.getApplicationContext()); 
 
  initView(); 
  login.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    mIUiListener = new BaseUiListener(); 
    //all表示獲取所有權(quán)限 
    mTencent.login(MainActivity.this,"all", mIUiListener); 
    mUserInfo = new UserInfo(MainActivity.this, mTencent.getQQToken()); //獲取用戶信息 
    mUserInfo.getUserInfo(mIUiListener); 
   } 
  }); 
 } 
 
 private void initView() { 
  login = (Button) findViewById(R.id.login); 
  name = (TextView) findViewById(R.id.name); 
  img = (ImageView) findViewById(R.id.img); 
 } 
 /** 
  * 自定義監(jiān)聽器實(shí)現(xiàn)IUiListener接口后,需要實(shí)現(xiàn)的3個(gè)方法 
  * onComplete完成 onError錯(cuò)誤 onCancel取消 
  */ 
 private class BaseUiListener implements IUiListener { 
 
  @Override 
  public void onComplete(Object response) { 
   Toast.makeText(MainActivity.this, "授權(quán)成功", Toast.LENGTH_SHORT).show(); 
   Log.e(TAG, "response:" + response); 
   JSONObject obj = (JSONObject) response; 
   try { 
    String openID = obj.getString("openid"); 
    String accessToken = obj.getString("access_token"); 
    String expires = obj.getString("expires_in"); 
    mTencent.setOpenId(openID); 
    mTencent.setAccessToken(accessToken,expires); 
    QQToken qqToken = mTencent.getQQToken(); 
    mUserInfo = new UserInfo(getApplicationContext(),qqToken); 
    mUserInfo.getUserInfo(new IUiListener() { 
     @Override 
     public void onComplete(Object response) { 
      Log.e(TAG,"登錄成功"+response.toString()); 
      if(response == null){ 
       return; 
      } 
      try { 
       JSONObject jo = (JSONObject) response; 
        Toast.makeText(MainActivity.this, "登錄成功", 
          Toast.LENGTH_LONG).show(); 
       String nickName = jo.getString("nickname"); 
       String figureurl_1= jo.getString("figureurl_1"); 
       name.setText(nickName); 
       ImageLoaderConfiguration configuration = new ImageLoaderConfiguration.Builder(MainActivity.this).build(); 
       ImageLoader.getInstance().init(configuration); 
       ImageLoader.getInstance().displayImage(figureurl_1,img); 
      } catch (Exception e) { 
       // TODO: handle exception 
      } 
     } 
 
     @Override 
     public void onError(UiError uiError) { 
      Log.e(TAG,"登錄失敗"+uiError.toString()); 
     } 
 
     @Override 
     public void onCancel() { 
      Log.e(TAG,"登錄取消"); 
 
     } 
    }); 
   } catch (JSONException e) { 
    e.printStackTrace(); 
   } 
  } 
 
  @Override 
  public void onError(UiError uiError) { 
   Toast.makeText(MainActivity.this, "授權(quán)失敗", Toast.LENGTH_SHORT).show(); 
 
  } 
 
  @Override 
  public void onCancel() { 
   Toast.makeText(MainActivity.this, "授權(quán)取消", Toast.LENGTH_SHORT).show(); 
 
  } 
 
 } 
 @Override 
 protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
  if(requestCode == Constants.REQUEST_LOGIN){ 
   Tencent.onActivityResultData(requestCode,resultCode,data,mIUiListener); 
  } 
  super.onActivityResult(requestCode, resultCode, data); 
 } 
} 

下面為顯示效果

Android實(shí)現(xiàn)QQ登錄功能

qq登錄完成!

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI