使用MonkeyKing进行第三方授权登录二

关于MonkeyKing的介绍和使用MonkeyKing进行第三方分享可以参考我的上一篇文章。使用MonkeyKing进行第三方分享
github地址:https://github.com/nixzhu/MonkeyKing

以微信授权为例,基本步骤如下
1、和上一篇配置一样,设置第三方账号的信息,包括appId和appKey,其中appKey是可选了,MonkeyKing提供了使用appId获取授权的方式
2、appdelegate中处理授权之后的回调,授权成功之后,会重新打开发起授权的app,并且微信返回一个url,类型下面的的URL,获取到url参数中的code之后,MonkeyKing重新发起请求,获取到用户的授权信息,使用回调返回给客户端

func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
        if MonkeyKing.handleOpenURL(url) {
            return true
        }
        return false
    }

wx4868b35061f87885://oauth?code=003pYdaH1Pxrg606pJ8H1u3W9H1pYda6&state=Weixinauth

3、发起授权请求并且处理回调获取的授权信息

 MonkeyKing.oauth(for: .weChat) { [weak self] (dictionary, response, error) in
            print("error \(String(describing: error))")
        }

拿到的授权信息主要包含如下:

openid
unionid
refresh_token
scope
access_token,
expires_in

做到这里,需要注意openid与unionid的区别,在不同的app中,客户端授权获取的openid是不同的,但是unionid是唯一的,因此对于同一家公司的多个应用,如果要共用用户微信账户体系,需要使用unionid,在做facebook登录的时候授权得不到用户的unionid,但是通过二次获取信息,可以得到用户的bussinesscode,这个相当于微信的unionid
MonkeyKing的demo中还提供了授权后获取用户基本信息的网络处理,这一步可以放在服务端去做,将第一步得到的授权信息发送给后台,然后后台返回用户的信息也是可以的。

fileprivate func fetchUserInfo(_ oauthInfo: [String: Any]?) {
        guard
            let token = oauthInfo?["access_token"] as? String,
            let openID = oauthInfo?["openid"] as? String,
            let refreshToken = oauthInfo?["refresh_token"] as? String,
            let expiresIn = oauthInfo?["expires_in"] as? Int else {
                return
        }
        let userInfoAPI = "https://api.weixin.qq.com/sns/userinfo"
        let parameters = [
            "openid": openID,
            "access_token": token
        ]
        // fetch UserInfo by userInfoAPI
        SimpleNetworking.sharedInstance.request(userInfoAPI, method: .get, parameters: parameters, completionHandler: { (userInfo, _, _) in
            guard var userInfo = userInfo else {
                return
            }
            userInfo["access_token"] = token
            userInfo["openid"] = openID
            userInfo["refresh_token"] = refreshToken
            userInfo["expires_in"] = expiresIn
            print("userInfo \(userInfo)")
        })
        // More API
        // http://mp.weixin.qq.com/wiki/home/index.html
    }

拿到的用户信息中有如下,注意unionid、access_token等信息需要手动拼接到userInfo中

city、headimgurl、unionid、privilege、
openid、nickname、language、province、sex、country
            // 然后从上面的拼接中拿到了四个信息access_token、openid(这个信息重复了)、refresh_token、expires_in

你可能感兴趣的:(使用MonkeyKing进行第三方授权登录二)