友盟第三方分享、授权

最近有用到友盟分享,授权登录这块,自己简单集成一下分享给大家。以下用的是友盟提供的开源账号,可以替换成自己的。
1.选择你需要的平台,我只用的微信,QQ还有新浪
友盟第三方分享、授权_第1张图片
Snip20161123_2.png

2.把下载好后的包拖入到你的工程

友盟第三方分享、授权_第2张图片
Snip20161123_5.png

3.添加项目配置,Other Linker Flags下添加-ObjC(ObjC注意大小写)

友盟第三方分享、授权_第3张图片
Snip20161123_6.png

接下来添加需要的依赖库:
libsqlite3.tbd
SystemConfiguration.framework
CoreTelephony.framework
libsqlite3.tbd
libc++.tbd
libz.tbd
ImageIO.framework

友盟第三方分享、授权_第4张图片
Snip20161123_7.png

4.配置平台的URL Scheme
为了快速集成,我用的是友盟demo中提供的账号:
微信:微信appKey-->wxdc1e388c3822c80b
QQ:QQ的需要添加两个 1、tencent100424468,2、QQ05fc5b14
新浪:新浪appKey-->wb3921700954

友盟第三方分享、授权_第5张图片
Snip20161123_8.png
友盟第三方分享、授权_第6张图片
Snip20161123_9.png

5.配置可转跳的白名单

友盟第三方分享、授权_第7张图片
Snip20161123_10.png

这部分可以直接从官网上拷贝,拷贝之后找到你的Info.plist文件

友盟第三方分享、授权_第8张图片
Snip20161123_11.png

把拷贝的代码放在

友盟第三方分享、授权_第9张图片
Snip20161123_13.png

在项目当中,我加了两个按钮,一个分享,一个授权登录的。
6.接下来进行初始化U-Share及第三方平台
导入头文件#import
将一下代码拷贝到你的AppDelegate.m里


//打开调试日志
[[UMSocialManager defaultManager] openLog:YES];
//设置友盟appkey
[[UMSocialManager defaultManager] setUmSocialAppkey:@"57b432afe0f55a9832001a0a"];
//设置微信的appKey和appSecret
[[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:@"wxdc1e388c3822c80b" appSecret:@"3baf1193c85774b3fd9d18447d76cab0" redirectURL:@"http://mobile.umeng.com/social"];
//设置分享到QQ互联的appKey和appSecret
[[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:@"100424468"  appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];
//设置新浪的appKey和appSecret
[[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Sina appKey:@"3921700954"  appSecret:@"04b48b094faeb16683c32669824ebdad" redirectURL:@"http://sns.whalecloud.com/sina2/callback"];

接下来设置系统回调,同样也是在AppDelegate.m里


// 支持所有iOS系统
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url];
if (!result) {
// 其他如支付等SDK的回调
}
return result;
}
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
BOOL result = [[UMSocialManager defaultManager] handleOpenURL:url];
if (!result) {
// 其他如支付等SDK的回调
}
return result;
}

7.进行第三方平台授权
看代码,首先导入#import,#import "UMSocialUIManager.h"


#pragma mark--授权按钮
- (IBAction)SignInBtn:(id)sender {
__weak typeof(self) weakSelf = self;
[UMSocialUIManager showShareMenuViewInWindowWithPlatformSelectionBlock:^(UMShareMenuSelectionView *shareSelectionView, UMSocialPlatformType platformType) {
[weakSelf getUserInfoForPlatform:platformType];
}];
}
- (void)getUserInfoForPlatform:(UMSocialPlatformType)platformType
{
[[UMSocialManager defaultManager] getUserInfoWithPlatform:platformType currentViewController:self completion:^(id result, NSError *error) {
UMSocialUserInfoResponse *userinfo =result;
NSString *message = [NSString stringWithFormat:@"name: %@\n icon: %@\n gender: %@\n",userinfo.name,userinfo.iconurl,userinfo.gender];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"UserInfo"
message:message
delegate:nil
cancelButtonTitle:NSLocalizedString(@"确定", nil)
otherButtonTitles:nil];
[alert show];
}];
}

8.分享


#pragma mark--分享按钮
- (IBAction)shareBtn:(id)sender {
__weak typeof(self) weakSelf = self;
[UMSocialUIManager showShareMenuViewInWindowWithPlatformSelectionBlock:^(UMShareMenuSelectionView *shareSelectionView, UMSocialPlatformType platformType) {
//        [weakSelf shareWithPlatformType:platformType shareTypeIndex:_index];
#warning 根据获取的platformType确定所选平台进行下一步操作
[weakSelf shareTextToPlatformType:platformType];
}];
}
//分享文本
- (void)shareTextToPlatformType:(UMSocialPlatformType)platformType
{
//创建分享消息对象
UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
//设置文本
messageObject.text = @"社会化组件UShare将各大社交平台接入您的应用,快速武装App。";
//调用分享接口
[[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
if (error) {
NSLog(@"************Share fail with error %@*********",error);
}else{
NSLog(@"response data is %@",data);
}
}];
}
到目前为止,分享和授权登录功能基本已经完成,但是在使用新浪授权登录的时候回出现 sso package or sign error,这个问题是因为你在新浪微博开放平台上申请的应用的bundle identifier 和你项目上的bundle identifier不一致。解决方法,修改微博开发平台上对应的bundle identifier。因为我在这使用的是友盟提供的账号,用自己的就没有这个问题了。

你可能感兴趣的:(友盟第三方分享、授权)