iOS经验总结

iOS微信登录流程记录

2019-12-20  本文已影响0人  顾宇丶

现在APP基本都需要第三方登陆,一般常用的第三方主要是微信登录,所以记录下微信登录接入流程

准备工作:

微信开放平台账号申请,应用配置

确保你的应用在微信开发平台上注册创建并获得对应的接口,具体申请流程不困难,按流程走就可以了,就不再这里说了。(最好预留3个工作日的时间)
申请完之后,确认你的应用已有微信登录接口(这个功能是需要另外申请开通的),应用审核通过后,微信会分配给我们AppID和AppSecret,这两个备份下,晚些会用。

微信官方文档说明(文档其实已经说明的很明了,具体点击链接看)

在进行微信 OAuth2.0 授权登录接入之前,在微信开放平台注册开发者帐号,并拥有一个已审核通过的移动应用,并获得相应的 AppID 和 AppSecret,申请微信登录且通过审核后,才可开始接入流程

  1. 第三方发起微信授权登录请求,微信用户允许授权第三方应用后,微信会拉起应用或重定向到第三方网站,并且带上授权临时票据code参数;
  2. 通过code参数加上AppID和AppSecret等,通过API换取access_token;
  3. 通过access_token进行接口调用,获取用户基本数据资源或帮助用户实现基本操作。

这个是整体流程,翻译下产品场景就是:

在登录页面时点击微信图标时,唤醒微信客户端,如果是第一次唤起微信,会出现微信登录授权页,非首次唤起微信,直接跳转登录。

逻辑不复杂的,照常上代码:

实现逻辑:

导入微信的开发工具包

如果没有微信支付的话只下载没有支付的工具包就可以了,最新的是有四个文件,下载后导入到项目中。
libWeChatSDK.aWechatAuthSDK.hWXApi.hWXApiObject.h

1.在AppDelegate中导入#import "WXApi.h"并添加代理WXApiDelegate

//初始化微信登录
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
         //填入刚才微信后台两个参数,appid 微信开发者ID和微信开发者Universal Link
        [WXApi registerApp:kAppKey_Wechat universalLink:kAppURL_Wechat];
}

//实现微信的代理
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return  [WXApi handleOpenURL:url delegate:self];
}
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [WXApi handleOpenURL:url delegate:self];
}

 -(void)onResp:(BaseResp *)resp {
    NSLog(@"resp %d",resp.errCode);
    if ([resp isKindOfClass: [SendAuthResp class]]) {
        SendAuthResp* authResp = (SendAuthResp*)resp;
        
        if (authResp.errCode == 0) {
            // 用户确认授权,发送全局通知,处理逻辑
            [[NSNotificationCenter defaultCenter] postNotificationName: KNotificationWXLOGIN_AUTHORIZED
                                                                object: authResp];
        } else {
            // 用户取消授权,发送全局通知,处理逻辑
            [[NSNotificationCenter defaultCenter] postNotificationName: KNotificationWXLOGIN_USERCANCELLED
                                                                object: nil];
        }
    }
}

2.在登录页面注册微信登录成功通知和失败通知,用来处理微信返回的逻辑.

    [[NSNotificationCenter defaultCenter] addObserver: self
                                             selector: @selector(wechatLoginUserCancelled)
                                                 name: KNotificationWXLOGIN_USERCANCELLED
                                               object: nil];
    
    [[NSNotificationCenter defaultCenter] addObserver: self
                                             selector: @selector(wechatLoginAuthorized:)
                                                 name: KNotificationWXLOGIN_AUTHORIZED
                                               object: nil];

3.在登录页面导入#import "WXApi.h"并添加代理WXApiDelegate
 首先先检查是否有安装微信,微信sdk已提供接口,直接调用就好了。
\color{red}{注意:没有安装微信,建议隐藏微信登录按钮,要不然苹果审核会被拒}

/*! @brief 检查微信是否已被用户安装
 *
 * @return 微信已安装返回YES,未安装返回NO。
 */
+ (BOOL)isWXAppInstalled;

 如果已安装微信,则唤起微信进行授权

//点击唤起微信授权
- (void)weChatLoginClick{
    [WXApi sendAuthReq:[WechatManager sendAuthRequest] viewController:self delegate:self completion:nil];
}

//单例WechatManager sendAuthRequest方法
+(SendAuthReq *)sendAuthRequest
{
    SendAuthReq *req = [[SendAuthReq alloc] init];
    req.scope = @"snsapi_userinfo";
    req.state = @"wx_oauth_authorization_state";
    return req;
}

4.接收微信返回通知,处理微信授权结果,授权成功后会返回一个NSDictionary,里面有我们需要的字段。

+ (void)wechat_loginAuthorized: (NSNotification*)notification :(SuccessBlock)completion
{
    //获取到code
      SendAuthResp *resp = notification.object;
//      _code = resp.code;
      
      AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
      NSString *url = [NSString stringWithFormat:@"https://api.weixin.qq.com/sns/oauth2/access_token?appid=%@&secret=%@&code=%@&grant_type=%@",kAppKey_Wechat,kSecret_Wechat,resp.code,@"authorization_code"];
      manager.requestSerializer = [AFJSONRequestSerializer serializer];
      [manager.requestSerializer setValue:@"text/html; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
      
      NSMutableSet *mgrSet = [NSMutableSet set];
      mgrSet.set = manager.responseSerializer.acceptableContentTypes;
      [mgrSet addObject:@"text/html"];
      [mgrSet addObject:@"text/plain"];
      [mgrSet addObject:@"application/json"];
      manager.responseSerializer.acceptableContentTypes = mgrSet;
      
      [manager GET:url parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) {
          
      } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
          NSLog(@"微信授权成功");
          NSDictionary *resp = (NSDictionary*)responseObject;
          NSString *openid = resp[@"openid"];
          NSString *unionid = resp[@"unionid"];
          NSString *accessToken = resp[@"access_token"];
          NSString *refreshToken = resp[@"refresh_token"];
          //调用获取用户详细信息方法,获取用户信息;
       
      } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
          completion(NO,nil);
      }];
}

5.授权成功后,获取用户详细信息

+(void)getWechatUserInfo:(SuccessBlock)completion
{
    //获取个人信息
        AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
        NSString *url = [NSString stringWithFormat:@"https://api.weixin.qq.com/sns/userinfo?access_token=%@&openid=%@",[[NSUserDefaults standardUserDefaults] objectForKey:WX_ACCESS_TOKEN],[[NSUserDefaults standardUserDefaults] objectForKey:WX_OPEN_ID]];
        
        NSMutableSet *mgrSet = [NSMutableSet set];
        mgrSet.set = manager.responseSerializer.acceptableContentTypes;
        [mgrSet addObject:@"text/html"];
        //因为微信返回的参数是text/plain 必须加上 会进入fail方法
        [mgrSet addObject:@"text/plain"];
        [mgrSet addObject:@"application/json"];
        manager.responseSerializer.acceptableContentTypes = mgrSet;
        
        [manager GET:url parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) {
            
        } success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
            NSLog(@"获取用户信息成功");
            NSLog(@"%@",responseObject);
            NSDictionary *resp = (NSDictionary*)responseObject;
            completion(YES,resp);

        } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
            NSLog(@"fail");
            NSLog(@"%@",task.response);
            completion(NO,nil);
            
        }];
}

6.完成回调,返回登录成功

- (void)wechatLoginAuthorized: (NSNotification*)notification {

    [WechatManager wechat_loginAuthorized:notification :^(BOOL success, NSDictionary *resp) {
        if (success) {
          //登录成功
        }
    }];    
}

以上微信登录流程就已经完了。

上一篇下一篇

猜你喜欢

热点阅读