美文网首页
iOS进阶之微信登陆、微信分享、微信支付

iOS进阶之微信登陆、微信分享、微信支付

作者: flionel | 来源:发表于2017-11-15 20:39 被阅读440次

    1. 在微信开发者网站,注册应用id

    2. 在资源下载页下载SDK文件

    3. 集成SDK到Xcode

    • 导入SDK到工程中
    • 添加如下依赖库
      • SystemConfiguration.framework
      • CoreTelephony.framework
      • libz.tbd
      • libsqlite3.0.tbd
      • libc++.tbd
    • 在Targets -> info的URL type添加key为wexin,URLScheme Value为所注册应用的id
    • 在plist文件中添加URL Schemes白名单
    • 导入WXApi.h,并实现WXApiDelegate
    <key>LSApplicationQueriesSchemes</key>
        <array>
            <string>wechat</string>
            <string>weixin</string>
            <string>sinaweibohd</string>
            <string>sinaweibo</string>
        </array>
    
    作者:风_雨
    链接:http://www.jianshu.com/p/1c1018580a58
    來源:简书
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
    

    4. 注册应用程序的id

    想微信注册应用程序的id,只有已经注册过id的程序,微信终端才能响应,如下代码所示,

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
            // Override point for customization after application launch.
            
            // ...
            WXApi.registerApp("wxd810oa5f5d48ae")
            return true
        }
    
    

    5. 处理AppDelegate的handleOpenURL和openURL

        func application(_ application: UIApplication, handleOpen url: URL) -> Bool {
            return WXApi.handleOpen(url, delegate: self)
        }
        
        func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
            return WXApi.handleOpen(url, delegate: self)
        }
        
        func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
            return WXApi.handleOpen(url, delegate: self)
        }
    
    

    6. WXApi辅助方法

    • WXApi.isWXAppInstalled() 判断是否安装微信
    • WXApi.isWXAppSupportApi() 判断微信版本是否支持

    7. 向微信发送请求

    通过SendAuthReq发送请求,构建SendAuthReq传如两个参数,

    • scope 向微信请求哪些权限
    • state 第三方程序用以标记请求的唯一性,从微信跳转回第三方应用程序时,由微信回传

    如下代码所示,

    let req = SendAuthReq()
    req.scope = "snsapi_userinfo" // 请求全部权限
    req.state = "binding"
    WXApi.send(req)
    

    8. 实现微信协议WXApiDelegate

    extension AppDelegate: WXApiDelegate {
        func onReq(req: BaseReq) {
    
        }
    
        func onResp(resp: BaseResp) {
    
        }
    }
    

    其中func onReq(req: BaseReq)是微信终端向第三方程序发起请求,要求第三方程序响应。第三方程序响应完成后必须调用sendRsp返回。在调用sendRsp返回时,会切回到微信程序界面。如果仅仅用到微信的分享和登陆授权通常可以不实现或实现为空。

    func onResp(resp: BaseResp)作用时,如果第三方程序向微信发送了sendReq的请求,那么onResp会被回调。sendReq请求调用后,会切到微信页面。这个方法是向微信发起授权登陆的请求后,微信回调结果的方法。

    Resp有如下几个值,如下所示,

    • SendAuthResp
    • PayResp 这是微信返回给第三方关于支付结果的结构体,根据错误吗来判定支付是否成功
    • SendMessageToResp 这是微信向第三方返回的关于分享图片、视频、链接和文本信息结果的结构体

    9. 微信授权登陆成功

    需要判定其state == "binding" && resp.errorCode == WXSuccess,若判定为true,说明微信用户允许授权第三方应用,此时微信回拉起应用或重定向到第三方网站,并且带上授权临时票据code等参数。在被用户授权之后,通过code参数,再加上appId和appSecret,调用api向微信发起请求用户的接口调用凭证access_token,参数说明如下,

    • appId 所申请应用程序的appId
    • secret 通过审核后获得的密码
    • code SendAuthResp.code
    • type "authorization_code"

    请求是通过http get方式发起的,如下链接,

    let str = "https://api.weixin.qq.com/sns.oauth2/access_token?appid=\(appId)&secret=\(secret)&code=\(code)&grand_type=\(type)"
    let url = URL(string: str)
    let request = URLRequest(url: url)
    // 简写
    URLSessionTask.request(request) { response in
        
    }
    

    如果请求成功,api回返回json数据,解析出openId, access_tokenexpires_in等参数,以备后用。拿到access_token等参数之后,通常做法是把这些参数传给server端,向server端发起用户登陆的请求,根据server端返回的结果来判定用户是否登陆成功。

    http://www.jianshu.com/p/1c1018580a58

    相关文章

      网友评论

          本文标题:iOS进阶之微信登陆、微信分享、微信支付

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