iOS-MOB第三方登录与分享

作者: 七月上 | 来源:发表于2016-04-18 19:58 被阅读2026次

    前段时间需要用到第三方登录与分享功能,找来找去发现MOB的Share-SDK蛮不错的,用着方便,而且官方文档介绍详细,好评-。-

    下面分享下我的使用经历,为了简单我这里只是使用了QQ来作为登录与分享的APP。以下参考MOB的官方文档:http://wiki.mob.com/ios%E7%AE%80%E6%B4%81%E7%89%88%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90/

    1.登录注册MOB,获得appkey. http://www.mob.com/#/

    2.下载要使用的Share-SDK(对了,建议提前去申请要使用的门户网站的开发者帐号,有的需要拍自己的身份证什么的,或创建应用以获取要是使用的 appid appkey)

    3.把下载解压完毕的SDK直接拖到你自己的工程中

    4.在工程中添加需要的依赖库
    libicucore.dylib
    libz.dylib
    libstdc++.dylib
    JavaScriptCore.framework
    QQ好友和QQ空间SDK依赖库
    libsqlite3.dylib

    5.设置ShareSDK的Appkey并初始化对应的第三方社交平台 打开AppDelegate.m(代表你的工程名字)导入头文件

    #import <ShareSDK/ShareSDK.h>
    #import <ShareSDKConnector/ShareSDKConnector.h>
     
    //腾讯开放平台(对应QQ和QQ空间)SDK头文件
    #import <TencentOpenAPI/TencentOAuth.h>
    #import <TencentOpenAPI/QQApiInterface.h>
    

    在- (BOOL)application: didFinishLaunchingWithOptions:方法中调用registerApp方法来初始化SDK并且初始化第三方平台(各社交平台申请AppKey的网址及申请流程汇总

    
    
    [ShareSDK registerApp:@""
         
              activePlatforms:@[
                                                           @(SSDKPlatformTypeQQ),
                               ]
                     onImport:^(SSDKPlatformType platformType)
         {
             switch (platformType)
             {
                 
                 case SSDKPlatformTypeQQ:
                     [ShareSDKConnector connectQQ:[QQApiInterface class] tencentOAuthClass:[TencentOAuth class]];
                     break;
                              default:
                     break;
             }
         }
              onConfiguration:^(SSDKPlatformType platformType, NSMutableDictionary *appInfo)
         {
             
             switch (platformType)
             {
                 case SSDKPlatformTypeSinaWeibo:
                                  case SSDKPlatformTypeQQ:
                     [appInfo SSDKSetupQQByAppId:@"在QQ开放平台申请的ID"
                                          appKey:@"申请的Key"
                                        authType:SSDKAuthTypeBoth];
                     break;
                                           default:
                     break;
             }
         }];
    

    6.为分享添加实现代码 打开需要集成分享功能的视图源码,把如下代码复制并粘贴到你要分享的位置,例如到响应分享按钮的方法中。并且修改相应的参数即可。
    导入头文件

    #import <ShareSDK/ShareSDK.h>
    #import <ShareSDKUI/ShareSDK+SSUI.h>
    

    调用构造分享参数接口和分享的接口

    
    //1、创建分享参数
        NSArray* imageArray = @[[UIImage imageNamed:@"qq"]];
        
        //(注意:图片必须要在Xcode左边目录里面,名称必须要传正确,如果要分享网络图片,可以这样传iamge参数 images:@[@"http://mob.com/Assets/images/logo.png?v=20150320"])
        if (imageArray) {
            
            NSMutableDictionary *shareParams = [NSMutableDictionary dictionary];
            [shareParams SSDKSetupShareParamsByText:self.title
                                             images:imageArray
                                                url:nil
                                              title:@"分享标题"
                                               type:SSDKContentTypeAuto];
            //2、分享(可以弹出我们的分享菜单和编辑界面)
            [ShareSDK showShareActionSheet:nil //要显示菜单的视图, iPad版中此参数作为弹出菜单的参照视图,只有传这个才可以弹出我们的分享菜单,可以传分享的按钮对象或者自己创建小的view 对象,iPhone可以传nil不会影响
                                     items:nil
                               shareParams:shareParams
                       onShareStateChanged:^(SSDKResponseState state, SSDKPlatformType platformType, NSDictionary *userData, SSDKContentEntity *contentEntity, NSError *error, BOOL end) {
                           
                           switch (state) {
                               case SSDKResponseStateSuccess:
                               {
                                   UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"分享成功"
                                                                                       message:nil
                                                                                      delegate:nil
                                                                             cancelButtonTitle:@"确定"
                                                                             otherButtonTitles:nil];
                                   [alertView show];
                                   break;
                               }
                               case SSDKResponseStateFail:
                               {
                                   UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"分享失败"
                                                                                   message:[NSString stringWithFormat:@"%@",error]
                                                                                  delegate:nil
                                                                         cancelButtonTitle:@"OK"
                                                                         otherButtonTitles:nil, nil];
                                   [alert show];
                                   break;
                               }
                               default:
                                   break;
                           }
                       }
             ];}
    

    7.为登录添加实现代码 打开需要集成登录功能的视图源码,把如下代码复制并粘贴到你要登录的位置,例如到响应登录按钮的方法中。并且修改相应的参数即可。

    这里以QQ登陆为例
    (其他的平台也一样的处理,修改下初始化以及登陆方法里的平台类型参数:微信登录-> SSDKPlatformTypeWechat,新浪微博登录->SSDKPlatformTypeSinaWeibo,文档最后介绍各个平台需要配置的url schemes 参数)

    //例如QQ的登录
    [ShareSDK getUserInfo:SSDKPlatformTypeQQ
               onStateChanged:^(SSDKResponseState state, SSDKUser *user, NSError *error)
         {
             if (state == SSDKResponseStateSuccess)
             {
     
                 NSLog(@"uid=%@",user.uid);
                 NSLog(@"%@",user.credential);
                 NSLog(@"token=%@",user.credential.token);
                 NSLog(@"nickname=%@",user.nickname);
             }
     
             else
                     {
                         NSLog(@"%@",error);
                     }
     
         }];
    

    支持QQ客户端登录的相关配置

    QQ如果要跳客户端登录的话,需要配置下URL Scheme:

    然后打开下图位置,在URL Types中添加腾讯AppID,其格式为:tencent+appID(你在QQ中申请的AppId), 如:tencent100371282。如图所示:


    到这里基本工作都差不多了,运行之后会收到一堆的提示

    没添加scheme

    因为升级到iOS9后,微信,QQ,微博等社交软件的分享都失效了,所以要在Info.plist加上这个key/value:
    LSApplicationQueriesSchemes 是个字典 把提示的需要添加的都加上

    LSApplicationQueriesSchemes

    Xcode7后禁止了HTTP的明文传输,因为它不安全。可以修改Info.plist文件,让它临时允许明文传输,在Info.plist文件中添加App Transport Security Settings,类型为字典。在字典中添加Allow Arbitrary Loads,类型为Bool类型,值为YES。

    Transport Security Settings

    做到这里基本就可以成功了,下面是我用真机测试的结果

    登录 分享成功 选择分享软件

    DEMO地址:https://github.com/AmazingWow/MOB--DEMO
    我的愿望是没有BUG 世界和平~

    相关文章

      网友评论

      本文标题:iOS-MOB第三方登录与分享

      本文链接:https://www.haomeiwen.com/subject/iuyalttx.html