iOS實現第三方微信登入方式執行個體解析(最新最全)_IOS

來源:互聯網
上載者:User

項目地址 : https://github.com/zhonggaorong/weixinLoginDemo

最新版本的微信登入實現步驟實現:

1.在進行微信OAuth2.0授權登入接入之前,在微信開放平台註冊開發人員帳號,並擁有一個已審核通過的行動裝置 App,並獲得相應的AppID和AppSecret,申請微信登入且通過審核後,可開始接入流程。 地址: 點擊開啟連結

2. 下載最新的SDK 地址: 點擊開啟連結

SDK內容如下:

結構解析:

從上到下依次說明:

1. 靜態庫,直接拖入工程。

2. ready.text自己看

3. 授權SDK。

4. 登入方法所在類。

5. 一些常用的對象類。

iOS微信登入注意事項:

1、目前行動裝置 App上微信登入只提供原生的登入方式,需要使用者安裝微信用戶端才能配合使用。

2、對於Android應用,建議總是顯示微信登入按鈕,當使用者手機沒有安裝微信用戶端時,請引導使用者下載安裝微信用戶端。

3、對於iOS應用,考慮到iOS市集審核指南中的相關規定,建議開發人員接入微信登入時,先檢測使用者手機是否已安裝微信用戶端(使用sdk中isWXAppInstalled函數 ),對未安裝的使用者隱藏微信登入按鈕,只提供其他登入方式(比如手機號註冊登入、遊客登入等)。

iOS微信登入大致流程:

1. 第三方發起微信授權登入請求,微信使用者允許授權第三方應用後,微信會拉起應用或重新導向到第三方網站,並且帶上授權臨時票據code參數;

2. 通過code參數加上AppID和AppSecret等,通過API換取access_token;

3. 通過access_token進行介面調用,擷取使用者基本資料資源或協助使用者實現基本操作。

示意圖:

接下來就進入正題:

1.配置工程

1. 建立一個工程。

2. 把下載下來的sdk中的.h檔案與靜態庫全部拖入工程。

3. 加入依賴庫

4. URL - Types (加入 appid)

target - Info - URL Types

5. 白名單

當程式出現此錯誤

-canOpenURL: failed for URL: "weixin://app/wx5efead4057f98bc0/" - error: "This app is not allowed to query for scheme weixin"

就說明沒有針對iOS9 增加白名單。在info.plist檔案中加入 LSApplicationQueriesSchemes

App Transport Security 這個是讓程式還是用http進行請求。

LSApplicationQueriesSchemes 這個是增加微信的白名單。

6. 現在編譯應該是沒有問題了。

2. 終於到令人興奮的代碼部分了。 直接上代碼。

// // AppDelegate.m // weixinLoginDemo // // Created by 張國榮 on 16/6/20. // Copyright © 2016年 BateOrganization. All rights reserved. // #import "AppDelegate.h" #import "WXApi.h" //微信開發人員ID #define URL_APPID @"app id" @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //向微信註冊應用。 [WXApi registerApp:URL_APPID withDescription:@"wechat"]; return YES; } -(BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options{ /*! @brief 處理微信通過URL啟動App時傳遞的資料 * * 需要在 application:openURL:sourceApplication:annotation:或者application:handleOpenURL中調用。 * @param url 微信啟動第三方應用時傳遞過來的URL * @param delegate WXApiDelegate對象,用來接收微信觸發的訊息。 * @return 成功返回YES,失敗返回NO。 */ return [WXApi handleOpenURL:url delegate:self]; } /*! 微信回調,不管是登入還是分享成功與否,都是走這個方法 @brief 發送一個sendReq後,收到微信的回應 * * 收到一個來自微信的處理結果。調用一次sendReq後會收到onResp。 * 可能收到的處理結果有SendMessageToWXResp、SendAuthResp等。 * @param resp具體的回應內容,是自動釋放的 */ -(void) onResp:(BaseResp*)resp{ NSLog(@"resp %d",resp.errCode); /* enum WXErrCode { WXSuccess = 0, 成功 WXErrCodeCommon = -1, 普通錯誤類型 WXErrCodeUserCancel = -2, 使用者點擊取消並返回 WXErrCodeSentFail = -3, 發送失敗 WXErrCodeAuthDeny = -4, 授權失敗 WXErrCodeUnsupport = -5, 微信不支援 }; */ if ([resp isKindOfClass:[SendAuthResp class]]) { //授權登入的類。 if (resp.errCode == 0) { //成功。 //這裡處理回調的方法 。 通過代理吧對應的登入訊息傳送過去。 if ([_wxDelegate respondsToSelector:@selector(loginSuccessByCode:)]) { SendAuthResp *resp2 = (SendAuthResp *)resp; [_wxDelegate loginSuccessByCode:resp2.code]; } }else{ //失敗 NSLog(@"error %@",resp.errStr); UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"登入失敗" message:[NSString stringWithFormat:@"reason : %@",resp.errStr] delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確定", nil nil]; [alert show]; } } } @end

下面是登入的類。

// // ViewController.m // weixinLoginDemo // // Created by 張國榮 on 16/6/20. // Copyright © 2016年 BateOrganization. All rights reserved. // #import "ViewController.h" #import "WXApi.h" #import "AppDelegate.h" //微信開發人員ID #define URL_APPID @"appid" #define URL_SECRET @"app secret" #import "AFNetworking.h" @interface ViewController ()<WXDelegate> { AppDelegate *appdelegate; } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. } #pragma mark 微信登入 - (IBAction)weixinLoginAction:(id)sender { if ([WXApi isWXAppInstalled]) { SendAuthReq *req = [[SendAuthReq alloc]init]; req.scope = @"snsapi_userinfo"; req.openID = URL_APPID; req.state = @"1245"; appdelegate = [UIApplication sharedApplication].delegate; appdelegate.wxDelegate = self; [WXApi sendReq:req]; }else{ //把微信登入的按鈕隱藏掉。 } } #pragma mark 微信登入回調。 -(void)loginSuccessByCode:(NSString *)code{ NSLog(@"code %@",code); __weak typeof(*&self) weakSelf = self; AFHTTPSessionManager *manager = [AFHTTPSessionManager manager]; manager.requestSerializer = [AFJSONRequestSerializer serializer];//請求 manager.responseSerializer = [AFHTTPResponseSerializer serializer];//響應 manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html",@"application/json", @"text/json",@"text/plain", nil nil]; //通過 appid secret 認證code . 來發送擷取 access_token的請求 [manager GET:[NSString stringWithFormat:@"https://api.weixin.qq.com/sns/oauth2/access_token?appid=%@&secret=%@&code=%@&grant_type=authorization_code",URL_APPID,URL_SECRET,code] parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) { } success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) { //獲得access_token,然後根據access_token擷取使用者資訊請求。 NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingMutableContainers error:nil]; NSLog(@"dic %@",dic); /* access_token 介面調用憑證 expires_in access_token介面調用憑證逾時時間,單位(秒) refresh_token 使用者重新整理access_token openid 授權使用者唯一標識 scope 使用者授權的範圍,使用逗號(,)分隔 unionid 若且唯若該行動裝置 App已獲得該使用者的userinfo授權時,才會出現該欄位 */ NSString* accessToken=[dic valueForKey:@"access_token"]; NSString* openID=[dic valueForKey:@"openid"]; [weakSelf requestUserInfoByToken:accessToken andOpenid:openID]; } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) { NSLog(@"error %@",error.localizedFailureReason); }]; } -(void)requestUserInfoByToken:(NSString *)token andOpenid:(NSString *)openID{ AFHTTPSessionManager *manager = [AFHTTPSessionManager manager]; manager.requestSerializer = [AFJSONRequestSerializer serializer]; manager.responseSerializer = [AFHTTPResponseSerializer serializer]; [manager GET:[NSString stringWithFormat:@"https://api.weixin.qq.com/sns/userinfo?access_token=%@&openid=%@",token,openID] parameters:nil progress:^(NSProgress * _Nonnull downloadProgress) { } success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) { NSDictionary *dic = (NSDictionary *)[NSJSONSerialization JSONObjectWithData:responseObject options:NSJSONReadingMutableContainers error:nil]; NSLog(@"dic ==== %@",dic); } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) { NSLog(@"error %ld",(long)error.code); }]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end

以上所述是小編給大家介紹的iOS實現第三方微信登入方式執行個體解析(最新最全),希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.