iOS QQ第三方登入實現_IOS

來源:互聯網
上載者:User

本文執行個體為大家分享了iOS QQ第三方登入實現代碼,供大家參考,具體內容如下

一、準備工作

1、到QQ開放平台(http://connect.qq.com/ )註冊成為開發人員,申請appkey,
2、在URL Types中添加QQ的AppID,其格式為:”tencent” + AppID    例如tencent1104463316

二、配置AppDelegate.m

1、匯入<TencentOpenAPI/QQApiInterface.h> 和<TencentOpenAPI/TencentOAuth.h>兩個標頭檔
2、配置函數:

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {   return [TencentOAuth HandleOpenURL:url]; }  - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {   return [TencentOAuth HandleOpenURL:url]; } 

三、在登入介面中設定代碼

1、匯入#import <TencentOpenAPI/TencentOAuth.h>
2、遵守協議:<TencentSessionDelegate>
3、觸發登陸方法中寫入一下代碼:

-(void)QQLogin {   NSArray* permissions = [NSArray arrayWithObjects:               kOPEN_PERMISSION_GET_USER_INFO,               kOPEN_PERMISSION_GET_SIMPLE_USER_INFO,               kOPEN_PERMISSION_ADD_ALBUM,               nil nil];   [self.tencentOAuth authorize:permissions]; } 

4、擷取使用者資訊

-(void)tencentDidLogin {   [self.tencentOAuth getUserInfo]; } [objc] view plain copy 在CODE上查看代碼片派生到My Code片- (void)getUserInfoResponse:(APIResponse*) response {   NSLog(@"getUserInfo = %@",response.jsonResponse);   NSLog(@"getUserInfo.nickName = %@",[response.jsonResponseobjectForKey:@"nickname"]);   NSString* alertMessage = [NSStringstringWithFormat:@"%@",response.jsonResponse];   NSString* headerPath = [response.jsonResponseobjectForKey:@"figureurl_qq_2"];   NSString* name = [response.jsonResponseobjectForKey:@"nickname"]; } 

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.