iOS集成友盟分享

友盟分享文档传送门:https://developer.umeng.com/docs/66632/detail/66825

文章目录结构:

---1、集成SDK

-----1.1 自动集成(cocoapods)

-----1.2 手动集成

-------1.2.1 下载对应的SDK(我用的只有分享SDK)

-------1.2.2 导入SDK到项目中

-------1.2.3 添加项目配置

-------1.2.4 加入依赖系统库

---2、配置SSO白名单:设置白名单为的是能够获取第三方平台的授权

---3、配置URL Scheme:目的是能够在分享结束后跳回到自己的app中

---4、初始化设置

---5、调用分享方法

---6、集成友盟分享遇到的问题以及解决方案


1、集成SDK

1.1 自动集成(cocoapods)

       见文档。

1.2 手动集成

    1.2.1 下载对应的SDK(我用的只有分享SDK)

1.2.2 导入SDK到项目中

1.2.3 添加项目配置

在Other Linker Flags加入-ObjC ,注意不要写为-Objc

-ObjC属于链接库必备参数,如果不加此项,会导致库文件无法被正确链接,SDK无法正常运行

1.2.4 加入依赖系统库

加入以下系统库:

libsqlite3.tbd

CoreGraphics.framework

(注意:第三方平台库添加,根据集成的不同平台加入相关的依赖库,具体可看文档)

2、配置SSO白名单:设置白名单为的是能够获取第三方平台的授权

在项目中的info.plist中加入应用白名单,右键info.plist选择source code打开,加入以下代码(可根据自身需要进行删减):

<key>LSApplicationQueriesSchemes</key>

<array>

    <!-- 微信 URL Scheme 白名单-->

    <string>wechat</string>

    <string>weixin</string>

    <!-- 新浪微博 URL Scheme 白名单-->

    <string>sinaweibohd</string>

    <string>sinaweibo</string>

    <string>sinaweibosso</string>

    <string>weibosdk</string>

    <string>weibosdk2.5</string>

    <!-- QQ、Qzone URL Scheme 白名单-->

    <string>mqqapi</string>

    <string>mqq</string>

    <string>mqqOpensdkSSoLogin</string>

    <string>mqqconnect</string>

    <string>mqqopensdkdataline</string>

    <string>mqqopensdkgrouptribeshare</string>

    <string>mqqopensdkfriend</string>

    <string>mqqopensdkapi</string>

    <string>mqqopensdkapiV2</string>

    <string>mqqopensdkapiV3</string>

    <string>mqqopensdkapiV4</string>

    <string>mqzoneopensdk</string>

    <string>wtloginmqq</string>

    <string>wtloginmqq2</string>

    <string>mqqwpa</string>

    <string>mqzone</string>

    <string>mqzonev2</string>

    <string>mqzoneshare</string>

    <string>wtloginqzone</string>

    <string>mqzonewx</string>

    <string>mqzoneopensdkapiV2</string>

    <string>mqzoneopensdkapi19</string>

    <string>mqzoneopensdkapi</string>

    <string>mqqbrowser</string>

    <string>mttbrowser</string>

    <string>tim</string>

    <string>timapi</string>

    <string>timopensdkfriend</string>

    <string>timwpa</string>

    <string>timgamebindinggroup</string>

    <string>timapiwallet</string>

    <string>timOpensdkSSoLogin</string>

    <string>wtlogintim</string>

    <string>timopensdkgrouptribeshare</string>

    <string>timopensdkapiV4</string>

    <string>timgamebindinggroup</string>

    <string>timopensdkdataline</string>

    <string>wtlogintimV1</string>

    <string>timapiV1</string>

    <!-- 支付宝 URL Scheme 白名单-->

    <string>alipay</string>

    <string>alipayshare</string>

    <!-- 钉钉 URL Scheme 白名单-->

      <string>dingtalk</string>

      <string>dingtalk-open</string>

    <!--Linkedin URL Scheme 白名单-->

    <string>linkedin</string>

    <string>linkedin-sdk2</string>

    <string>linkedin-sdk</string>

    <!-- 点点虫 URL Scheme 白名单-->

    <string>laiwangsso</string>

    <!-- 易信 URL Scheme 白名单-->

    <string>yixin</string>

    <string>yixinopenapi</string>

    <!-- instagram URL Scheme 白名单-->

    <string>instagram</string>

    <!-- whatsapp URL Scheme 白名单-->

    <string>whatsapp</string>

    <!-- line URL Scheme 白名单-->

    <string>line</string>

    <!-- Facebook URL Scheme 白名单-->

    <string>fbapi</string>

    <string>fb-messenger-api</string>

    <string>fb-messenger-share-api</string>

    <string>fbauth2</string>

    <string>fbshareextension</string>

    <!-- Kakao URL Scheme 白名单--> 

    <!-- 注:以下第一个参数需替换为自己的kakao appkey-->

    <!-- 格式为 kakao + "kakao appkey"-->   

    <string>kakaofa63a0b2356e923f3edd6512d531f546</string>

    <string>kakaokompassauth</string>

    <string>storykompassauth</string>

    <string>kakaolink</string>

    <string>kakaotalk-4.5.0</string>

    <string>kakaostory-2.9.0</string>

  <!-- pinterest URL Scheme 白名单--> 

    <string>pinterestsdk.v1</string>

  <!-- Tumblr URL Scheme 白名单--> 

    <string>tumblr</string>

  <!-- 印象笔记 -->

    <string>evernote</string>

    <string>en</string>

    <string>enx</string>

    <string>evernotecid</string>

    <string>evernotemsg</string>

  <!-- 有道云笔记-->

    <string>youdaonote</string>

    <string>ynotedictfav</string>

    <string>com.youdao.note.todayViewNote</string>

    <string>ynotesharesdk</string>

  <!-- Google+-->

    <string>gplus</string>

  <!-- Pocket-->

    <string>pocket</string>

    <string>readitlater</string>

    <string>pocket-oauth-v1</string>

    <string>fb131450656879143</string>

    <string>en-readitlater-5776</string>

    <string>com.ideashower.ReadItLaterPro3</string>

    <string>com.ideashower.ReadItLaterPro</string>

    <string>com.ideashower.ReadItLaterProAlpha</string>

    <string>com.ideashower.ReadItLaterProEnterprise</string>

  <!-- VKontakte-->

    <string>vk</string>

    <string>vk-share</string>

    <string>vkauthorize</string>

  <!-- Twitter-->

    <string>twitter</string>

    <string>twitterauth</string>

</array>


3、配置URL Scheme:目的是能够在分享结束后跳回到自己的app中

·配置第三方平台URL Scheme未列出则不需设置

4、初始化设置

4.1 在项目 AppDelegate.m 中引用#import <UMShare/UMShare.h>和#import <UMCommon/UMCommon.h>

4.2 在- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{}方法中,设置友盟appkey并调用-(void)confitUShareSettings方法:

- (void)configUSharePlatforms {

    /* 设置微信的appKey和appSecret */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:@"wxdc1e388c3822c80b" appSecret:@"3baf1193c85774b3fd9d18447d76cab0" redirectURL:@"http://mobile.umeng.com/social"];

    /*

    * 移除相应平台的分享,如微信收藏

    */

    //[[UMSocialManager defaultManager] removePlatformProviderWithPlatformTypes:@[@(UMSocialPlatformType_WechatFavorite)]];

    /* 设置分享到QQ互联的appID

    * U-Share SDK为了兼容大部分平台命名,统一用appKey和appSecret进行参数设置,而QQ平台仅需将appID作为U-Share的appKey参数传进即可。

    */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:@"1105821097"/*设置QQ平台的appID*/  appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    /* 设置新浪的appKey和appSecret */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Sina appKey:@"3921700954"  appSecret:@"04b48b094faeb16683c32669824ebdad" redirectURL:@"https://sns.whalecloud.com/sina2/callback"];

    /* 钉钉的appKey */

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_DingDing appKey:@"dingoalmlnohc0wggfedpk" appSecret:nil redirectURL:nil];

    /* 支付宝的appKey */

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_AlipaySession appKey:@"2015111700822536" appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    /* 设置易信的appKey */

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_YixinSession appKey:@"yx35664bdff4db42c2b7be1e29390c1a06" appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];

    /* 设置点点虫(原来往)的appKey和appSecret */

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_LaiWangSession appKey:@"8112117817424282305" appSecret:@"9996ed5039e641658de7b83345fee6c9" redirectURL:@"http://mobile.umeng.com/social"];

    /* 设置领英的appKey和appSecret */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Linkedin appKey:@"81t5eiem37d2sc"  appSecret:@"7dgUXPLH8kA8WHMV" redirectURL:@"https://api.linkedin.com/v1/people"];

    /* 设置Twitter的appKey和appSecret */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Twitter appKey:@"fB5tvRpna1CKK97xZUslbxiet"  appSecret:@"YcbSvseLIwZ4hZg9YmgJPP5uWzd4zr6BpBKGZhf07zzh3oj62K" redirectURL:nil];

    /* 设置Facebook的appKey和UrlString */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Facebook appKey:@"506027402887373"  appSecret:nil redirectURL:@"http://www.umeng.com/social"];

    /* 设置Pinterest的appKey */

    [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Pinterest appKey:@"4864546872699668063"  appSecret:nil redirectURL:nil];

    /* dropbox的appKey */

    [[UMSocialManager defaultManager] setPlaform: UMSocialPlatformType_DropBox appKey:@"k4pn9gdwygpy4av" appSecret:@"td28zkbyb9p49xu" redirectURL:@"https://mobile.umeng.com/social"];

    /* vk的appkey */

    [[UMSocialManager defaultManager]  setPlaform:UMSocialPlatformType_VKontakte appKey:@"5786123" appSecret:nil redirectURL:nil];

}


5、调用分享方法

-(void)toShare {

/** 设置分享面板图标的排序,可忽略使用默认排序 */

//    NSArray *baseDisplaySnsPlatforms = @[@(UMSocialPlatformType_WechatSession),

//                                        @(UMSocialPlatformType_QQ)

//                                        ];

//    [UMSocialUIManager setPreDefinePlatforms:baseDisplaySnsPlatforms];

    //显示分享面板

    [UMSocialUIManager showShareMenuViewInWindowWithPlatformSelectionBlock:^(UMSocialPlatformType platformType, NSDictionary *userInfo) {        

        //创建分享消息对象

        UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];

        //创建网页内容对象

        UMShareWebpageObject*shareObject = [UMShareWebpageObjectshareObjectWithTitle:@"挑战你的记忆力"descr:@"鱼的记忆有七秒,你的呢?"thumImage:[UIImage imageNamed:@"loginIcon"]];

        //设置网页地址

        shareObject.webpageUrl=kUpdateLine; 

       //分享消息对象设置分享内容对象

        messageObject.shareObject= shareObject;

        //调用分享接口

        [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:nil completion:^(id data, NSError *error)

         {

             NSLog(@"%@",data);

             if(error) {

                 UMSocialLogInfo(@"************Share fail with error %@*********",error);

             }

             if([dataisKindOfClass:[UMSocialShareResponseclass]]) {

                 UMSocialShareResponse*resp = data;

                 //分享结果消息

                 UMSocialLogInfo(@"response message is %@",resp.message);

                 //第三方原始返回的数据

                 UMSocialLogInfo(@"response originalResponse data is %@",resp.originalResponse);

             }else{

                 UMSocialLogInfo(@"response data is %@",data);

             }


         }];

    }];

}


6、集成友盟分享遇到的问题以及解决方案

6.1 问:点击分享后没有弹出分享面板?

      答:

6.2 问:分享面板没有任何第三方平台的图标?

      答:①确认真机已经安装对应的应用;

              ②确认APPDelegate.m中调用了-(void)confitUShareSettings方法;

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343