iOS:IOS项目集成ShareSDK实现第三方登录、分享、关注等功能。

简介:

原文链接:http://blog.csdn.net/daleiwang/article/details/34081231

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

复制代码
//  
//  AppDelegate.m  
//  ShareSDKTest  
//  
//  Created by wangdalei on .  
//  Copyright (c). All rights reserved.  
//  
  
#import "AppDelegate.h"  
#import "RootViewController.h"  
#import <ShareSDK/ShareSDK.h>  
#import "WeiboApi.h"  
#import <TencentOpenAPI/QQApiInterface.h>  
#import <TencentOpenAPI/TencentOAuth.h>  
#import "WXApi.h"  
#import <TencentOpenAPI/QQApiInterface.h>  
#import <TencentOpenAPI/TencentOAuth.h>  
  
@implementation AppDelegate  
@synthesize rootVC;  
  
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];  
    if (self.rootVC==nil) {  
        self.rootVC = [[RootViewController alloc]initWithNibName:@"RootViewController" bundle:nil];  
    }  
    UINavigationController *rootNav = [[UINavigationController alloc]initWithRootViewController:self.rootVC];  
    self.window.rootViewController = rootNav;  
    self.window.backgroundColor = [UIColor whiteColor];  
    [self.window makeKeyAndVisible];  
      
      
    <span style="color:#ff0000;">[ShareSDK registerApp:@"1a2e7ab5fb6c"];</span>  
      
   <span style="color:#3366ff;"> //添加新浪微博应用 注册网址 http://open.weibo.com  wdl@pmmq.com 此处需要替换成自己应用的  
    [ShareSDK connectSinaWeiboWithAppKey:@"3201194191"  
                               appSecret:@"0334252914651e8f76bad63337b3b78f"  
                             redirectUri:@"http://appgo.cn"];  
      
    //添加腾讯微博应用 注册网址 http://dev.t.qq.com wdl@pmmq.com 此处需要替换成自己应用的  
    [ShareSDK connectTencentWeiboWithAppKey:@"801307650"  
                                  appSecret:@"ae36f4ee3946e1cbb98d6965b0b2ff5c"  
                                redirectUri:@"http://www.sharesdk.cn"  
                                   wbApiCls:[WeiboApi class]];  
      
    //添加QQ空间应用 注册网址  http://connect.qq.com/intro/login/ wdl@pmmq.com 此处需要替换成自己应用的  
    [ShareSDK connectQZoneWithAppKey:@"100371282"  
                           appSecret:@"aed9b0303e3ed1e27bae87c33761161d"  
                   qqApiInterfaceCls:[QQApiInterface class]  
                     tencentOAuthCls:[TencentOAuth class]];  
      
    //此参数为申请的微信AppID wdl@pmmq.com 此处需要替换成自己应用的  
    [ShareSDK connectWeChatWithAppId:@"wx4868b35061f87885" wechatCls:[WXApi class]];  
      
    //添加QQ应用 该参数填入申请的QQ AppId wdl@pmmq.com 此处需要替换成自己应用的  
    [ShareSDK connectQQWithQZoneAppKey:@"100371282"  
                     qqApiInterfaceCls:[QQApiInterface class]  
                       tencentOAuthCls:[TencentOAuth class]];</span>  
      
    return YES;  
}  
  
  
- (void)applicationWillResignActive:(UIApplication *)application {  
    // 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.  
    // 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.  
}  
  
- (void)applicationDidEnterBackground:(UIApplication *)application {  
    // 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.   
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.  
}  
  
- (void)applicationWillEnterForeground:(UIApplication *)application {  
    // 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.  
}  
  
- (void)applicationDidBecomeActive:(UIApplication *)application {  
    // 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.  
}  
  
- (void)applicationWillTerminate:(UIApplication *)application {  
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.  
}  
  
  
<span style="color:#ff6600;">#pragma mark - WX回调  
  
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {  
    return [ShareSDK handleOpenURL:url wxDelegate:self];  
}  
  
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {  
    return [ShareSDK handleOpenURL:url sourceApplication:sourceApplication annotation:annotation wxDelegate:self];  
}  
  
#pragma mark - WXApiDelegate  
  
/*! @brief 收到一个来自微信的请求,第三方应用程序处理完后调用sendResp向微信发送结果 
 * 
 * 收到一个来自微信的请求,异步处理完成后必须调用sendResp发送处理结果给微信。 
 * 可能收到的请求有GetMessageFromWXReq、ShowMessageFromWXReq等。 
 * @param req 具体请求内容,是自动释放的 
 */  
-(void) onReq:(BaseReq*)req{  
      
}  
  
/*! @brief 发送一个sendReq后,收到微信的回应 
 * 
 * 收到一个来自微信的处理结果。调用一次sendReq后会收到onResp。 
 * 可能收到的处理结果有SendMessageToWXResp、SendAuthResp等。 
 * @param resp具体的回应内容,是自动释放的 
 */  
-(void) onResp:(BaseResp*)resp{  
      
}  
@end  
复制代码

(4)信息分享。

复制代码
-(IBAction)share:(id)sender{  
    NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"card"  ofType:@"png"];  
    //构造分享内容  
    id<ISSContent> publishContent = [ShareSDK content:@"分享内容测试"  
                                       defaultContent:@"默认分享内容测试,没内容时显示"  
                                                image:[ShareSDK imageWithPath:imagePath]  
                                                title:@"pmmq"  
                                                  url:@"http://www.sharesdk.cn"  
                                          description:@"这是一条测试信息"  
                                            mediaType:SSPublishContentMediaTypeNews];  
    [ShareSDK showShareActionSheet:nil  
                         shareList:nil  
                           content:publishContent  
                     statusBarTips:YES  
                       authOptions:nil  
                      shareOptions: nil  
                            result:^(ShareType type, SSResponseState state, id<ISSPlatformShareInfo> statusInfo, id<ICMErrorInfo> error, BOOL end) {  
                                if (state == SSResponseStateSuccess)  
                                {  
                                    NSLog(@"分享成功");  
                                }  
                                else if (state == SSResponseStateFail)  
                                {  
                                    NSLog(@"分享失败");  
                                }  
                            }];  
}  
复制代码

(5)登录、登出、获取授权信息、关注制定微博

复制代码
#import "LoginViewController.h"  
#import <ShareSDK/ShareSDK.h>  
  
@interface LoginViewController ()  
  
-(IBAction)loginWithSina:(id)sender;  
  
-(IBAction)loginWithQQ:(id)sender;  
  
-(IBAction)loginoutWithSina:(id)sender;  
  
-(IBAction)loginoutWithQQ:(id)sender;  
  
-(IBAction)guanzhuUs:(id)sender;  
  
-(void)reloadStateWithType:(ShareType)type;  
  
@end  
  
@implementation LoginViewController  
  
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {  
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
    if (self) {  
    }  
    return self;  
}  
  
- (void)viewDidLoad {  
    [super viewDidLoad];  
}  
  
- (void)didReceiveMemoryWarning {  
    [super didReceiveMemoryWarning];  
}  
  
- (IBAction)loginWithSina:(id)sender {  
    [ShareSDK getUserInfoWithType:ShareTypeSinaWeibo authOptions:nil result:^(BOOL result, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
        NSLog(@"%d",result);  
        if (result) {  
            //成功登录后,判断该用户的ID是否在自己的数据库中。  
            //如果有直接登录,没有就将该用户的ID和相关资料在数据库中创建新用户。  
            [self reloadStateWithType:ShareTypeSinaWeibo];  
        }  
    }];  
}  
  
  
-(IBAction)loginWithQQ:(id)sender{  
    [ShareSDK getUserInfoWithType:ShareTypeQQSpace authOptions:nil result:^(BOOL result, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
        NSLog(@"%d",result);  
        if (result) {  
            //成功登录后,判断该用户的ID是否在自己的数据库中。  
            //如果有直接登录,没有就将该用户的ID和相关资料在数据库中创建新用户。  
            [self reloadStateWithType:ShareTypeQQSpace];  
        }  
    }];  
}  
  
-(IBAction)loginoutWithSina:(id)sender{  
    [ShareSDK cancelAuthWithType:ShareTypeSinaWeibo];  
    [self reloadStateWithType:ShareTypeSinaWeibo];  
}  
  
-(IBAction)loginoutWithQQ:(id)sender{  
    [ShareSDK cancelAuthWithType:ShareTypeQQSpace];  
    [self reloadStateWithType:ShareTypeQQSpace];  
}  
  
-(void)reloadStateWithType:(ShareType)type{  
    //现实授权信息,包括授权ID、授权有效期等。  
    //此处可以在用户进入应用的时候直接调用,如授权信息不为空且不过期可帮用户自动实现登录。  
    id<ISSPlatformCredential> credential = [ShareSDK getCredentialWithType:type];  
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"TEXT_TIPS", @"提示")  
                                                        message:[NSString stringWithFormat:  
                                                                 @"uid = %@\ntoken = %@\nsecret = %@\n expired = %@\nextInfo = %@",  
                                                                 [credential uid],  
                                                                 [credential token],  
                                                                 [credential secret],  
                                                                 [credential expired],  
                                                                 [credential extInfo]]  
                                                       delegate:nil  
                                              cancelButtonTitle:NSLocalizedString(@"TEXT_KNOW", @"知道了")  
                                              otherButtonTitles:nil];  
    [alertView show];  
}  
  
//关注用户  
-(IBAction)guanzhuUs:(id)sender{  
    [ShareSDK followUserWithType:ShareTypeSinaWeibo         //平台类型  
                           field:@"ShareSDK"                //关注用户的名称或ID  
                       fieldType:SSUserFieldTypeName        //字段类型,用于指定第二个参数是名称还是ID  
                     authOptions:nil                        //授权选项  
                    viewDelegate:nil                        //授权视图委托  
                          result:^(SSResponseState state, id<ISSPlatformUser> userInfo, id<ICMErrorInfo> error) {  
                              if (state == SSResponseStateSuccess) {  
                                  NSLog(@"关注成功");  
                              } else if (state == SSResponseStateFail) {  
                                  NSLog(@"%@", [NSString stringWithFormat:@"关注失败:%@", error.errorDescription]);  
                              }  
                          }];  
}  
  
  
@end  
复制代码

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

 

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

 

DEMO下载地址:http://download.csdn.net/download/daleiwang/7734321

程序猿神奇的手,每时每刻,这双手都在改变着世界的交互方式!
本文转自当天真遇到现实博客园博客,原文链接:http://www.cnblogs.com/XYQ-208910/p/5144477.html ,如需转载请自行联系原作者
相关文章
|
22天前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
84 1
|
3天前
|
JSON Java API
springboot集成ElasticSearch使用completion实现补全功能
springboot集成ElasticSearch使用completion实现补全功能
14 1
|
12天前
|
存储 JavaScript 数据库
ToB项目身份认证AD集成(一):基于目录的用户管理、LDAP和Active Directory简述
本文介绍了基于目录的用户管理及其在企业中的应用,重点解析了LDAP协议和Active Directory服务的概念、关系及差异。通过具体的账号密码认证时序图,展示了利用LDAP协议与AD域进行用户认证的过程。总结了目录服务在现代网络环境中的重要性,并预告了后续的深入文章。
|
12天前
|
人工智能 JavaScript 网络安全
ToB项目身份认证AD集成(三完):利用ldap.js实现与windows AD对接实现用户搜索、认证、密码修改等功能 - 以及针对中文转义问题的补丁方法
本文详细介绍了如何使用 `ldapjs` 库在 Node.js 中实现与 Windows AD 的交互,包括用户搜索、身份验证、密码修改和重置等功能。通过创建 `LdapService` 类,提供了与 AD 服务器通信的完整解决方案,同时解决了中文字段在 LDAP 操作中被转义的问题。
|
26天前
|
jenkins Shell 持续交付
Jenkins持续集成GitLab项目 GitLab提交分支后触发Jenkis任务 持续集成 CI/CD 超级详细 超多图(二)
Jenkins持续集成GitLab项目 GitLab提交分支后触发Jenkis任务 持续集成 CI/CD 超级详细 超多图(二)
61 0
|
12天前
|
安全 Java 测试技术
ToB项目身份认证AD集成(二):快速搞定window server 2003部署AD域服务并支持ssl
本文详细介绍了如何搭建本地AD域控测试环境,包括安装AD域服务、测试LDAP接口及配置LDAPS的过程。通过运行自签名证书生成脚本和手动部署证书,实现安全的SSL连接,适用于ToB项目的身份认证集成。文中还提供了相关系列文章链接,便于读者深入了解AD和LDAP的基础知识。
|
24天前
|
Java Shell 开发工具
git集成IDEA,托管项目实现版本管理
git集成IDEA,托管项目实现版本管理
31 0
|
26天前
|
jenkins Shell 持续交付
Jenkins持续集成GitLab项目 GitLab提交分支后触发Jenkis任务 持续集成 CI/CD 超级详细 超多图(一)
Jenkins持续集成GitLab项目 GitLab提交分支后触发Jenkis任务 持续集成 CI/CD 超级详细 超多图(一)
75 0
|
4月前
|
监控 druid Java
spring boot 集成配置阿里 Druid监控配置
spring boot 集成配置阿里 Druid监控配置
262 6
|
4月前
|
Java 关系型数据库 MySQL
如何实现Springboot+camunda+mysql的集成
【7月更文挑战第2天】集成Spring Boot、Camunda和MySQL的简要步骤: 1. 初始化Spring Boot项目,添加Camunda和MySQL驱动依赖。 2. 配置`application.properties`,包括数据库URL、用户名和密码。 3. 设置Camunda引擎属性,指定数据源。 4. 引入流程定义文件(如`.bpmn`)。 5. 创建服务处理流程操作,创建控制器接收请求。 6. Camunda自动在数据库创建表结构。 7. 启动应用,测试流程启动,如通过服务和控制器开始流程实例。 示例代码包括服务类启动流程实例及控制器接口。实际集成需按业务需求调整。
317 4