詳解android在mob平臺實現qq登陸和分享
個人感覺mob平臺功能還是比較強大的,很多功能都可以通過他們平臺來實現。
建議仔細觀看每一個步驟,如果一個步驟沒處理好,可能就會讓你的這個功能無法實現。相信我一定可以成功的
。
廢話少說,先看一下效果:
1.在mob平臺配置ShareSDK環境
1.如何在mob平臺創建應用
下面為我創建的應用,如圖所示,我們選擇接入的接口為ShareSDK
2.獲取你的App Key
和App Secret
(建議用自己的)
獲取你先創建應用的App Key和App Secret
,這裡主要告訴你在哪裡找App Key和App Secret,因為等下需要用到。
3.點擊SDK下載
4.選擇ShareSDK
選擇配置我們主要選擇下方配置,然後點擊保存配置(下面我會說明為什麼隻選擇這些配置)。
5.點擊下載,就會彈出下載提示
6.關於為什麼隻選擇這些配置?
可以從上圖中看出,無論是QQ還微博,微信等都需要獲取他們平臺的appId和appKey
。如果你直接使用平臺的提供的appId和appKey是不能成功的。如果我想要實現這些功能,我們得先去那些平臺獲取他的appId和appKey。
7.我創建的QQ開發者平臺應用
下面是我創建成功的應用,說實話QQ的這個服務確實挺慢的,一般審核需要幾天,可以是免費的原因吧
。下面是創建應用的步驟。
1.成為個人開發者。
2.創建移動應用。
2.把ShareSDK部署到android
1.新建一個moudle或者project
這個就不細說,比較簡單。
2.配置你的build.gradle(Project)文件
如圖所示,添加如圖代碼:
代碼如下:
classpath "com.mob.sdk:MobSDK:2018.0319.1724"
3.配置你的build.gradle(Module)文件
1.首先加入如圖代碼
根據你的情況選擇:
代碼如下,因為我的版本是android studio 4.2最新版,加入方法如下:
id 'com.mob.sdk'
如果是其他android studio 3點多的版本,添加方法代碼:
apply plugin:'com.mob.sdk'
2.其次加入下圖代碼
加入代碼如下(建議使用自己申請的appId和appKey,如果你使用的是我QQ申請的appId和appKey話,你是成功不瞭,關於為什麼成功不瞭,我下面將會說明
):
MobSDK { fp true //嚴格模式 } MobSDK { appKey "31c48ca47c70e" appSecret "2d7adbfcd73363bbbe41aeff60e41e4f" ShareSDK { loopShare true devInfo { SinaWeibo { appKey "568898243" appSecret "38a4f8204cc784f81f9f0daaf31e02e3" callbackUri "http://www.sharesdk.cn" } QQ { appId "101906011" appKey "676d885e518445fed4d7d2341ff2d56f" } TencentWeibo { appKey "801307650" appSecret "ae36f4ee3946e1cbb98d6965b0b2ff5c" callbackUri "http://www.sharesdk.cn" } QZone { appId "100371282" appKey "aed9b0303e3ed1e27bae87c33761161d" } } } }
3. 解釋一下關於為什麼成功不瞭
下面我創建的應用
我們可以看一下在QQ平臺創建的應用包名和應用簽名如下:
然後我們在把他和我創建的android項目來對比一下:
1.我的包名和他相同
2.我們可以看一下我們的MD5是否相同
第一步:如果查看你的項目的MD5
找到圖中的gradle
點擊圖中紅色圓圈處
然後就可以查看MD5瞭
第二步:將我的MD5的去掉’:號’,把大寫改為小寫,我們對比一下是相同的。
補充條件小彩蛋:如果你新建其他項目android項目的時候需要用到QQ的appId和appKey的話,你可以直接點擊下圖中的修改,修改你為你新項目的包名和MD5。
即可直接進行修改
4.配置你的AndroidManifest.xml文件
加入如圖回調和權限
。
代碼如下:
權限:
<uses-permission android:name="android.permission.GET_TASKS" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> <uses-permission android:name="android.permission.GET_ACCOUNTS"/> <!-- 藍牙分享所需的權限 --> <uses-permission android:name="android.permission.BLUETOOTH" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
回調代碼:
<activity android:name="com.mob.tools.MobUIShell" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:configChanges="keyboardHidden|orientation|screenSize" android:screenOrientation="portrait" android:windowSoftInputMode="stateHidden|adjustResize" tools:ignore="LockedOrientationActivity"> <!-- QQ和QQ空間分享 QQ登錄的回調必須要配置的 --> <intent-filter> <data android:scheme="tencent101906011" /> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <!-- 新浪微博客戶端分享回調必須配置 --> <intent-filter> <action android:name="com.sina.weibo.sdk.action.ACTION_SDK_REQ_ACTIVITY" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
註意事項
:
記得把如圖紅色圓圈處的101906011改為你的QQ平臺創建的應用申請的appId。
5.配置activity.xml文件。
比較簡單,主要添加幾個控件用來接收數據
代碼如下
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="24dp" android:text="名字" android:textSize="20sp" app:layout_constraintEnd_toEndOf="@+id/imageView" app:layout_constraintStart_toStartOf="@+id/imageView" app:layout_constraintTop_toBottomOf="@+id/imageView"></TextView> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="340dp" android:text="QQ登錄" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.476" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/imageView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="56dp" android:src="@mipmap/ic_launcher_round" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="24dp" android:text="性別" app:layout_constraintEnd_toEndOf="@+id/text" app:layout_constraintStart_toStartOf="@+id/text" app:layout_constraintTop_toBottomOf="@+id/text" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:text="QQ分享" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/button" /> </androidx.constraintlayout.widget.ConstraintLayout>
6.配置Activity.java文件
1.記得把MobSDK.init裡面的AppKey和AppSecret
改為你自己申請你的。
2.qq登錄代碼
Platform qq = ShareSDK.getPlatform(QQ.NAME); qq.SSOSetting(false); // 設置false表示使用SSO授權方式 qq.authorize(); thirdLoginId = qq.getDb().getUserId(); name = qq.getDb().getUserName(); image = qq.getDb().getUserIcon(); sex = qq.getDb().getUserGender(); Toast.makeText(MainActivity.this,"name="+image,Toast.LENGTH_LONG).show(); TextView textView=findViewById(R.id.text); textView.setText(name); Log.e("Toast","image="+thirdLoginId); ImageView imageView=findViewById(R.id.imageView); Glide.with(MainActivity.this) .load(image) .into(imageView); TextView textView1=findViewById(R.id.textView); if(sex!=null){ if(sex=="m"){ sex= "男"; }else { sex="女"; } } textView1.setText(sex);
記得導入Glide依賴,因為獲取的圖片地址為網絡圖片地址
implementation 'com.github.bumptech.glide:glide:4.11.0'
3.qq分享代碼
OnekeyShare oks = new OnekeyShare(); // title標題,微信、QQ和QQ空間等平臺使用 oks.setTitle("分享"); // titleUrl QQ和QQ空間跳轉鏈接 oks.setTitleUrl("http://sharesdk.cn"); // text是分享文本,所有平臺都需要這個字段 oks.setText("我是分享文本"); // setImageUrl是網絡圖片的url oks.setImageUrl("https://hmls.hfbank.com.cn/hfapp-api/9.png"); // url在微信、Facebook等平臺中使用 oks.setUrl("http://sharesdk.cn"); // 啟動分享GUI oks.show(MobSDK.getContext());
4.總體代碼
package com.example.mobsharetest; import androidx.appcompat.app.AppCompatActivity; import android.net.Uri; import android.os.Bundle; 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.bumptech.glide.Glide; import com.mob.MobSDK; import org.w3c.dom.Text; import java.util.HashMap; import cn.sharesdk.framework.Platform; import cn.sharesdk.framework.PlatformActionListener; import cn.sharesdk.framework.ShareSDK; import cn.sharesdk.onekeyshare.OnekeyShare; import cn.sharesdk.sina.weibo.SinaWeibo; import cn.sharesdk.tencent.qq.QQ; public class MainActivity extends AppCompatActivity { private Button button; private Button button2; String thirdLoginId; String name; String image; String sex; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); MobSDK.init(this, "31c48ca47c70e","2d7adbfcd73363bbbe41aeff60e41e4f"); MobSDK.submitPolicyGrantResult(true, null); button=findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Platform qq = ShareSDK.getPlatform(QQ.NAME); qq.SSOSetting(false); // 設置false表示使用SSO授權方式 qq.authorize(); thirdLoginId = qq.getDb().getUserId(); name = qq.getDb().getUserName(); image = qq.getDb().getUserIcon(); sex = qq.getDb().getUserGender(); Toast.makeText(MainActivity.this,"name="+image,Toast.LENGTH_LONG).show(); TextView textView=findViewById(R.id.text); textView.setText(name); Log.e("Toast","image="+thirdLoginId); ImageView imageView=findViewById(R.id.imageView); Glide.with(MainActivity.this) .load(image) .into(imageView); TextView textView1=findViewById(R.id.textView); if(sex!=null){ if(sex=="m"){ sex= "男"; }else { sex="女"; } } textView1.setText(sex); } }); button2=findViewById(R.id.button2); button2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { OnekeyShare oks = new OnekeyShare(); // title標題,微信、QQ和QQ空間等平臺使用 oks.setTitle("分享"); // titleUrl QQ和QQ空間跳轉鏈接 oks.setTitleUrl("http://sharesdk.cn"); // text是分享文本,所有平臺都需要這個字段 oks.setText("我是分享文本"); // setImageUrl是網絡圖片的url oks.setImageUrl("https://hmls.hfbank.com.cn/hfapp-api/9.png"); // url在微信、Facebook等平臺中使用 oks.setUrl("http://sharesdk.cn"); // 啟動分享GUI oks.show(MobSDK.getContext()); } }); } }
步驟有點復雜,因為這個功能確實比較難以實現,如果有什麼問題的話,可以提出來,一不小心就寫14000多個字瞭
。
以上就是詳解android在mob平臺實現qq登陸和分享的詳細內容,更多關於android在mob平臺qq登陸和分享的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- None Found