iOS学习包

Swift-友盟分享

2016-01-04  本文已影响972人  GoGooGooo

1. 下载并安装SDK

2.1 下载SDK
最新版SDK下载地址:http://dev.umeng.com/social/ios/sdk-download


2.2 加入SDK
UMSocial_Sdk_x.x.x的文件夹以及UMSocial_Sdk_Extra_Frameworks目录下的SinaSSO文件夹拖入工程目录:

2.3 创建桥接
具体如何桥接这里就不说明了,我们需要在桥接文件中包含以下两个头文件

#import "UMSocial.h"
#import "UMSocialSinaSSOHandler.h"

2.4 设置AppKey
在AppDelegate内设置友盟AppKey

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

    // 设置Appkey
    UMSocialData.setAppKey("5608de9de0f55afaae0018e6")
    return true
}

2.5 添加实现代码
在新浪微博登录按钮中实现下面的方法

let snsPlatform: UMSocialSnsPlatform = UMSocialSnsPlatformManager.getSocialPlatformWithName(UMShareToSina)

snsPlatform.loginClickHandler(self, UMSocialControllerService.defaultControllerService(), true, {response in

    if response.responseCode == UMSResponseCodeSuccess {

        let snsAccount:UMSocialAccountEntity = UMSocialAccountManager.socialAccountDictionary()[UMShareToSina] as! UMSocialAccountEntity

        print("username is \(snsAccount.userName), uid is \(snsAccount.usid), token is \(snsAccount.accessToken) url is \(snsAccount.iconURL)")
    }
})

在授权完成后调用获取用户信息的方法

//获取accestoken以及新浪用户信息,得到的数据在回调Block对象形参respone的data属性
UMSocialDataService.defaultDataService().requestSnsInformation(UMShareToSina) { (response) -> Void in
    print(response.data)
}

3. SSO配置

使用SSO授权方式,在用户安装了微博客户端并登录时,可以在分享过程中不需要输入账号密码,直接通过微博客户端授权,随后进行网页分享,免去了用户输入密码的过程。 在用户未安装客户端时,则自动跳转到网页授权方式,微博SSO授权友盟提供了微博原生SDK与非原生SDK两种方式,本文介绍的是微博原生SDK。

3.1 添加相关系统库文件
在other linker flags增加-ObjC 选项,


并在Xcode中打开工程配置文件,选择“Linked Frameworks and Libraries”一栏,点击“+”图标添加下列库文件:添加


ImageIO.framework Security.framework libiconv.dylib SystemConfiguration.framework CoreGraphics.Framework libsqlite3.dylib CoreTelephony.framework libstdc++.dylib libz.dylib

3.2 添加URL schemes
在工程->info->URL Types中添加 URL Schemes,格式为“wb”+新浪appkey,例如“wb126663232”

3.3 在AppDelegate文件集成相应的开关方法:
http://open.weibo.com/apps

  func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {址,“http://sns.whalecloud.com/sina2/callback”,这里可以传nil
    UMSocialSinaSSOHandler.openNewSinaSSOWithAppKey("新浪appkey", redirectURL: "http://sns.whalecloud.com/sina2/callback")

    return true
}

3.4 在AppDelegate文件里面实现下面的系统回调方法

    func application(application: UIApplication, handleOpenURL url: NSURL) -> Bool {
        return UMSocialSnsService.handleOpenURL(url)
    }
    func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {
        return UMSocialSnsService.handleOpenURL(url)
    }}

4. 适配iOS9系统

在info.plist的App Transport Security Settings下新增Allow Arbitrary Loads并设置为YES,指定所有HTTP连接都可正常请求

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

如果你的应用使用了如SSO授权登录或跳转分享功能,在iOS9下就需要增加一个可跳转的白名单,指定对应跳转App的URL Scheme,否则将在第三方平台判断是否跳转时用到的canOpenURL时返回NO,进而只进行webview授权或授权/分享失败。
同样在info.plist的LSApplicationQueriesSchemes下增加:

<key>LSApplicationQueriesSchemes</key>
<array>
<!-- 新浪微博 URL Scheme 白名单-->
  <string>sinaweibohd</string>
  <string>sinaweibo</string>
  <string>sinaweibosso</string>
  <string>weibosdk</string>
  <string>weibosdk2.5</string>
</array>

提示,如果程序报以下错误:

ld: ‘/Users/**/Framework/SDKs/PolymerPay/Library/mobStat/lib**SDK.a(**ForSDK.o)’ does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64

可以在Build Settings中将Enable Bitcode设置为No

最后附上示例Demo的github地址:https://github.com/laichunhui/UMSocialLogin_Sina

上一篇 下一篇

猜你喜欢

热点阅读