利用ShareSDK实现第三方分享功能

Posted xinruzhishui_11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用ShareSDK实现第三方分享功能相关的知识,希望对你有一定的参考价值。

ShareSDK官网地址:http://mob.com/
1.先注册一个账号,填写开发者资料
2.查看一下关于ShareSDK分享有关的开发文档,按照开发文档说的一步一步做,我就不重复描述了
3,将生成的包导入到自己项目中
4.添加权限

    <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" />

5.添加Activity信息


 //tencent后面的appid要保持和您配置的QQ的appid一致)

<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" >

     <intent-filter>
         <data android:scheme="tencent100371282" />
         <action android:name="android.intent.action.VIEW" />
         <category android:name="android.intent.category.BROWSABLE" />
         <category android:name="android.intent.category.DEFAULT" />
     </intent-filter>

    <!-- 调用新浪原生SDK,需要注册的回调activity -->
    <intent-filter>
        <action android:name="com.sina.weibo.sdk.action.ACTION_SDK_REQ_ACTIVITY" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>

    <!--集成line客户端登录授权,需要添如下格式的过滤器-->
    <intent-filter> 
    <data android:scheme="line.1477692153" />
    <action android:name="android.intent.action.VIEW"/>
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>

 </activity>

6、如果您集成了微信,易信,支付宝还需要添加下面回调的activity处理;

    <!--微信分享回调 -->
 <activity
     android:name=".wxapi.WXEntryActivity"
     android:theme="@android:style/Theme.Translucent.NoTitleBar"
     android:configChanges="keyboardHidden|orientation|screenSize"
     android:exported="true"
     android:screenOrientation="portrait" /> 

<!--易信分享回调 -->
 <activity
     android:name=".yxapi.YXEntryActivity"
     android:theme="@android:style/Theme.Translucent.NoTitleBar"
     android:configChanges="keyboardHidden|orientation|screenSize"
     android:exported="true"
     android:screenOrientation="portrait" />

 <!-- 支付宝分享回调 -->
<activity
    android:name=".apshare.ShareEntryActivity"
    android:theme="@android:style/Theme.Translucent.NoTitleBar"
    android:configChanges="keyboardHidden|orientation|screenSize"
    android:exported="true"/>
<!-钉钉分享回调-->
<activity
   android:name=".ddshare.DDShareActivity"
    android:launchMode="singleInstance"
    android:exported="true">
    <intent-filter>
        <action android:name="android.intent.action.VIEW"></action>
        <category android:name="android.intent.category.DEFAULT"></category>
    </intent-filter>
</activity>

7.替换mob后台申请的Appkey与各个平台申请的key
要用的哪几个分享就必须在相应平台注册,获取appID AppSecret

各个平台注册应用信息的地址如下:
            新浪微博        http://open.weibo.com
            微信好友        http://open.weixin.qq.com
            Facebook       https://developers.facebook.com
            Twitter        https://dev.twitter.com
            人人网          http://dev.renren.com
            开心网          http://open.kaixin001.com
            搜狐微博        http://open.t.sohu.com
            网易微博        http://open.t.163.com
            豆瓣           http://developers.douban.com

            有道云笔记      http://note.youdao.com/open/developguide.html#app
            印象笔记        https://dev.evernote.com/
            Linkedin       https://developer.linkedin.com
            FourSquare     https://developer.foursquare.com/
            搜狐随身看      https://open.sohu.com/
            Flickr         http://www.flickr.com/services/
            Pinterest      http://developers.pinterest.com/
            Tumblr         http://www.tumblr.com/developers
            Dropbox        https://www.dropbox.com/developers
            Instagram      http://instagram.com/developer#
            VKontakte      http://vk.com/dev
            易信好友        http://open.yixin.im/
            明道             http://open.mingdao.com/
            Line           http://media.line.me/zh-hant/  https://developers.line.me
            Pocket         http://getpocket.com/developer/apps/new
            KakaoTalk      https://developers.kakao.com/
            KakaoStory     https://developers.kakao.com/
            Plurk          http://www.plurk.com/API

微信比较复杂一点,必须填写应用签名,获取签名文件的方式

1.使用 keytool(jdk自带工具)获取 SHA1
2,在控制台上输入(发布版本使用 apk 对应的 keystore)命令为:keytool -list -v -keystore apk 的 kenstore。例如:keytool -list -v -keystore my_keystore
3.输入密钥
4.获取MD5(需要的应用签名了)

8.添加分享代码

//在您程序启动的时候添加初始化代码(注:不要等调用ShareSDK功能之前才初始化)
ShareSDK.initSDK(this);
//在您的代码中调用此方法,即可打开一键分享功能进行分享
    private void showShare() 
 OnekeyShare oks = new OnekeyShare();
 //关闭sso授权
 oks.disableSSOWhenAuthorize(); 
 // title标题,印象笔记、邮箱、信息、微信、人人网、QQ和QQ空间使用
 oks.setTitle("标题");
 // titleUrl是标题的网络链接,仅在Linked-in,QQ和QQ空间使用
 oks.setTitleUrl("http://sharesdk.cn");
 // text是分享文本,所有平台都需要这个字段
 oks.setText("我是分享文本");
 //分享网络图片,新浪微博分享网络图片需要通过审核后申请高级写入接口,否则请注释掉测试新浪微博
 oks.setImageUrl("http://f1.sharesdk.cn/imgs/2014/02/26/owWpLZo_638x960.jpg");
 // imagePath是图片的本地路径,Linked-In以外的平台都支持此参数
 //oks.setImagePath("/sdcard/test.jpg");//确保SDcard下面存在此张图片
 // url仅在微信(包括好友和朋友圈)中使用
 oks.setUrl("http://sharesdk.cn");
 // comment是我对这条分享的评论,仅在人人网和QQ空间使用
 oks.setComment("我是测试评论文本");
 // site是分享此内容的网站名称,仅在QQ空间使用
 oks.setSite("ShareSDK");
 // siteUrl是分享此内容的网站地址,仅在QQ空间使用
 oks.setSiteUrl("http://sharesdk.cn");

// 启动分享GUI
 oks.show(this);
 

以上是关于利用ShareSDK实现第三方分享功能的主要内容,如果未能解决你的问题,请参考以下文章

IOS项目集成ShareSDK实现第三方登录分享关注等功能(转)

android shareSDK实现第三方分享

ShareSDK分享和SMS的使用

Android ShareSDK快速实现分享功能

flutter 分享功能 ios端 利用MobTech的ShareSDK进行分享 支持分享到微信微信小程序网页qq微博等主流平台

前端vue引入第三方分享用sharesdk怎么用