iOS:shareSDK 登录,分享,关注

1)官方下载ShareSDK iOS 2.8.8,地址:http://sharesdk.cn/


(2)根据实际情况,引入相关的库,参考官方文档


(3)在项目的AppDelegate中一般情况下有三个操作,第一是注册ShareSDK,第二是注册各个平台的账号,第三是关于微信等应用的回调处理。

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. //  
  2. //  AppDelegate.m  
  3. //  ShareSDKTest  
  4. //  
  5. //  Created by wangdalei on 14-6-23.  
  6. //  Copyright (c) 2014年 王大雷. All rights reserved.  
  7. //  
  8.   
  9. #import "AppDelegate.h"  
  10. #import "RootViewController.h"  
  11. #import <ShareSDK/ShareSDK.h>  
  12. #import "WeiboApi.h"  
  13. #import <TencentOpenAPI/QQApiInterface.h>  
  14. #import <TencentOpenAPI/TencentOAuth.h>  
  15. #import "WXApi.h"  
  16. #import <TencentOpenAPI/QQApiInterface.h>  
  17. #import <TencentOpenAPI/TencentOAuth.h>  
  18.   
  19. @implementation AppDelegate  
  20. @synthesize rootVC;  
  21.   
  22. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
  23.     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];  
  24.     if (self.rootVC==nil) {  
  25.         self.rootVC = [[RootViewController alloc]initWithNibName:@"RootViewController" bundle:nil];  
  26.     }  
  27.     UINavigationController *rootNav = [[UINavigationController alloc]initWithRootViewController:self.rootVC];  
  28.     self.window.rootViewController = rootNav;  
  29.     self.window.backgroundColor = [UIColor whiteColor];  
  30.     [self.window makeKeyAndVisible];  
  31.       
  32.       
  33.     <span style="color:#ff0000;">[ShareSDK registerApp:@"1a2e7ab5fb6c"];</span>  
  34.       
  35.    <span style="color:#3366ff;"//添加新浪微博应用 注册网址 http://open.weibo.com  wdl@pmmq.com 此处需要替换成自己应用的  
  36.     [ShareSDK connectSinaWeiboWithAppKey:@"3201194191"  
  37.                                appSecret:@"0334252914651e8f76bad63337b3b78f"  
  38.                              redirectUri:@"http://appgo.cn"];  
  39.       
  40.     //添加腾讯微博应用 注册网址 http://dev.t.qq.com wdl@pmmq.com 此处需要替换成自己应用的  
  41.     [ShareSDK connectTencentWeiboWithAppKey:@"801307650"  
  42.                                   appSecret:@"ae36f4ee3946e1cbb98d6965b0b2ff5c"  
  43.                                 redirectUri:@"http://www.sharesdk.cn"  
  44.                                    wbApiCls:[WeiboApi class]];  
  45.       
  46.     //添加QQ空间应用 注册网址  http://connect.qq.com/intro/login/ wdl@pmmq.com 此处需要替换成自己应用的  
  47.     [ShareSDK connectQZoneWithAppKey:@"100371282"  
  48.                            appSecret:@"aed9b0303e3ed1e27bae87c33761161d"  
  49.                    qqApiInterfaceCls:[QQApiInterface class]  
  50.                      tencentOAuthCls:[TencentOAuth class]];  
  51.       
  52.     //此参数为申请的微信AppID wdl@pmmq.com 此处需要替换成自己应用的  
  53.     [ShareSDK connectWeChatWithAppId:@"wx4868b35061f87885" wechatCls:[WXApi class]];  
  54.       
  55.     //添加QQ应用 该参数填入申请的QQ AppId wdl@pmmq.com 此处需要替换成自己应用的  
  56.     [ShareSDK connectQQWithQZoneAppKey:@"100371282"  
  57.                      qqApiInterfaceCls:[QQApiInterface class]  
  58.                        tencentOAuthCls:[TencentOAuth class]];</span>  
  59.       
  60.     return YES;  
  61. }  
  62.   
  63.   
  64. - (void)applicationWillResignActive:(UIApplication *)application {  
  65.     // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.  
  66.     // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.  
  67. }  
  68.   
  69. - (void)applicationDidEnterBackground:(UIApplication *)application {  
  70.     // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.   
  71.     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.  
  72. }  
  73.   
  74. - (void)applicationWillEnterForeground:(UIApplication *)application {  
  75.     // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.  
  76. }  
  77.   
  78. - (void)applicationDidBecomeActive:(UIApplication *)application {  
  79.     // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.  
  80. }  
  81.   
  82. - (void)applicationWillTerminate:(UIApplication *)application {  
  83.     // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.  
  84. }  
  85.   
  86.   
  87. <span style="color:#ff6600;">#pragma mark - WX回调  
  88.   
  89. - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {  
  90.     return [ShareSDK handleOpenURL:url wxDelegate:self];  
  91. }  
  92.   
  93. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {  
  94.     return [ShareSDK handleOpenURL:url sourceApplication:sourceApplication annotation:annotation wxDelegate:self];  
  95. }  
  96.   
  97. #pragma mark - WXApiDelegate  
  98.   
  99. /*! @brief 收到一个来自微信的请求,第三方应用程序处理完后调用sendResp向微信发送结果 
  100.  * 
  101.  * 收到一个来自微信的请求,异步处理完成后必须调用sendResp发送处理结果给微信。 
  102.  * 可能收到的请求有GetMessageFromWXReq、ShowMessageFromWXReq等。 
  103.  * @param req 具体请求内容,是自动释放的 
  104.  */  
  105. -(void) onReq:(BaseReq*)req{  
  106.       
  107. }  
  108.   
  109. /*! @brief 发送一个sendReq后,收到微信的回应 
  110.  * 
  111.  * 收到一个来自微信的处理结果。调用一次sendReq后会收到onResp。 
  112.  * 可能收到的处理结果有SendMessageToWXResp、SendAuthResp等。 
  113.  * @param resp具体的回应内容,是自动释放的 
  114.  */  
  115. -(void) onResp:(BaseResp*)resp{  
  116.       
  117. }  
  118. </span>  
  119. @end  


(4)信息分享。
[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. -(IBAction)share:(id)sender{  
  2.     NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"card"  ofType:@"png"];  
  3.     //构造分享内容  
  4.     id<ISSContent> publishContent = [ShareSDK content:@"分享内容测试"  
  5.                                        defaultContent:@"默认分享内容测试,没内容时显示"  
  6.                                                 image:[ShareSDK imageWithPath:imagePath]  
  7.                                                 title:@"pmmq"  
  8.                                                   url:@"http://www.sharesdk.cn"  
  9.                                           description:@"这是一条测试信息"  
  10.                                             mediaType:SSPublishContentMediaTypeNews];  
  11.     [ShareSDK showShareActionSheet:nil  
  12.                          shareList:nil  
  13.                            content:publishContent  
  14.                      statusBarTips:YES  
  15.                        authOptions:nil  
  16.                       shareOptions: nil  
  17.                             result:^(ShareType type, SSResponseState state, id<ISSPlatformShareInfo> statusInfo, id<ICMErrorInfo> error, BOOL end) {  
  18.                                 if (state == SSResponseStateSuccess)  
  19.                                 {  
  20.                                     NSLog(@"分享成功");  
  21.                                 }  
  22.                                 else if (state == SSResponseStateFail)  
  23.                                 {  
  24.                                     NSLog(@"分享失败");  
  25.                                 }  
  26.                             }];  
  27. }  

(5)登录、登出、获取授权信息、关注制定微博
[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. //  
  2. //  LoginViewController.m  
  3. //  ShareSDKTest  
  4. //  
  5. //  Created by wangdalei on 14-6-23.  
  6. //  Copyright (c) 2014年 王大雷. All rights reserved.  
  7. //  
  8.   
  9. #import "LoginViewController.h"  
  10. #import <ShareSDK/ShareSDK.h>  
  11.   
  12. @interface LoginViewController ()  
  13.   
  14. -(IBAction)loginWithSina:(id)sender;  
  15.   
  16. -(IBAction)loginWithQQ:(id)sender;  
  17.   
  18. -(IBAction)loginoutWithSina:(id)sender;  
  19.   
  20. -(IBAction)loginoutWithQQ:(id)sender;  
  21.   
  22. -(IBAction)guanzhuUs:(id)sender;  
  23.   
  24. -(void)reloadStateWithType:(ShareType)type;  
  25.   
  26. @end  
  27.   
  28. @implementation LoginViewController  
  29.   
  30. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {  
  31.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
  32.     if (self) {  
  33.     }  
  34.     return self;  
  35. }  
  36.   
  37. - (void)viewDidLoad {  
  38.     [super viewDidLoad];  
  39. }  
  40.   
  41. - (void)didReceiveMemoryWarning {  
  42.     [super didReceiveMemoryWarning];  
  43. }  
  44.   
  45. - (IBAction)loginWithSina:(id)sender {  
  46.     [ShareSDK getUserInfoWithType:ShareTypeSinaWeibo authOptions:nil result:^(BOOL result, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
  47.         NSLog(@"%d",result);  
  48.         if (result) {  
  49.             //成功登录后,判断该用户的ID是否在自己的数据库中。  
  50.             //如果有直接登录,没有就将该用户的ID和相关资料在数据库中创建新用户。  
  51.             [self reloadStateWithType:ShareTypeSinaWeibo];  
  52.         }  
  53.     }];  
  54. }  
  55.   
  56.   
  57. -(IBAction)loginWithQQ:(id)sender{  
  58.     [ShareSDK getUserInfoWithType:ShareTypeQQSpace authOptions:nil result:^(BOOL result, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
  59.         NSLog(@"%d",result);  
  60.         if (result) {  
  61.             //成功登录后,判断该用户的ID是否在自己的数据库中。  
  62.             //如果有直接登录,没有就将该用户的ID和相关资料在数据库中创建新用户。  
  63.             [self reloadStateWithType:ShareTypeQQSpace];  
  64.         }  
  65.     }];  
  66. }  
  67.   
  68. -(IBAction)loginoutWithSina:(id)sender{  
  69.     [ShareSDK cancelAuthWithType:ShareTypeSinaWeibo];  
  70.     [self reloadStateWithType:ShareTypeSinaWeibo];  
  71. }  
  72.   
  73. -(IBAction)loginoutWithQQ:(id)sender{  
  74.     [ShareSDK cancelAuthWithType:ShareTypeQQSpace];  
  75.     [self reloadStateWithType:ShareTypeQQSpace];  
  76. }  
  77.   
  78. -(void)reloadStateWithType:(ShareType)type{  
  79.     //现实授权信息,包括授权ID、授权有效期等。  
  80.     //此处可以在用户进入应用的时候直接调用,如授权信息不为空且不过期可帮用户自动实现登录。  
  81.     id<ISSPlatformCredential> credential = [ShareSDK getCredentialWithType:type];  
  82.     UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"TEXT_TIPS"@"提示")  
  83.                                                         message:[NSString stringWithFormat:  
  84.                                                                  @"uid = %@\ntoken = %@\nsecret = %@\n expired = %@\nextInfo = %@",  
  85.                                                                  [credential uid],  
  86.                                                                  [credential token],  
  87.                                                                  [credential secret],  
  88.                                                                  [credential expired],  
  89.                                                                  [credential extInfo]]  
  90.                                                        delegate:nil  
  91.                                               cancelButtonTitle:NSLocalizedString(@"TEXT_KNOW"@"知道了")  
  92.                                               otherButtonTitles:nil];  
  93.     [alertView show];  
  94. }  
  95.   
  96. //关注用户  
  97. -(IBAction)guanzhuUs:(id)sender{  
  98.     [ShareSDK followUserWithType:ShareTypeSinaWeibo         //平台类型  
  99.                            field:@"ShareSDK"                //关注用户的名称或ID  
  100.                        fieldType:SSUserFieldTypeName        //字段类型,用于指定第二个参数是名称还是ID  
  101.                      authOptions:nil                        //授权选项  
  102.                     viewDelegate:nil                        //授权视图委托  
  103.                           result:^(SSResponseState state, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
  104.                               if (state == SSResponseStateSuccess) {  
  105.                                   NSLog(@"关注成功");  
  106.                               } else if (state == SSResponseStateFail) {  
  107.                                   NSLog(@"%@", [NSString stringWithFormat:@"关注失败:%@", error.errorDescription]);  
  108.                               }  
  109.                           }];  
  110. }  
  111.   
  112.   
  113. @end  

(5)你可能会看到一些应用需要第三方登录的,一种是弹出webView加载的新浪微博或者qq的网页授权,还有一种是跳转到本地的已经安装的新浪微博应用或者qq应用进行授权。第二种授权方式较SSO授权,体验会比较好一些,因为不需要用户输入新浪微博或QQ的用户名与密码。

第二种授权方式需要在plist中配置Scheme。SSO默认是打开的不需要配置。在AppDelegate中实现回调。



(6)测试DEMO截图:



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值