关于shareSDK使用遇到的一些问题

这是我第一次写博客 ,写的不好请见谅.

最近在项目中涉及到新浪微博,qq分享,还有微信和朋友圈分享,于是就采用了shareSDK的框架来实现.下面来分享下步骤

1.先去mob官网注册账号,然后注册你的应用,步骤官网都有,就不啰嗦了.

2.下载集成sdk 根据需求来下载,有些不必要的就不必下载了,属于冗余的.然后倒入相关的依赖库

具体可以参考  官方demo下载地址

3.设置 AppDelegate.m 文件相关头文件 并且在在didFinishLaunchingWithOptions方法中加入如下代码。


/**

*  设置ShareSDK的appKey,如果尚未在ShareSDK官网注册过App,请移步到http://mob.com/login 登录后台进行应用注册

*  在将生成的AppKey传入到此方法中。

*  方法中的第二个第三个参数为需要连接社交平台SDK时触发,

*  在此事件中写入连接代码。第四个参数则为配置本地社交平台时触发,根据返回的平台类型来配置平台信息。

*  如果您使用的时服务端托管平台信息时,第二、四项参数可以传入nil,第三项参数则根据服务端托管平台来决定要连接的社交SDK。

*/

// 这里的iosv1101要替换成你在ShareSDK官网注册时得到的AppKey

[ShareSDK registerApp:@"iosv1101"

// 这个数组装的都是分享时会展示出来的应用,可以根据自己需要来进行删减,比如 GooglePlus 我一般就删掉了

activePlatforms:@[

@(SSDKPlatformTypeSinaWeibo),

@(SSDKPlatformTypeMail),

@(SSDKPlatformTypeSMS),

@(SSDKPlatformTypeCopy),

@(SSDKPlatformTypeWechat),

@(SSDKPlatformTypeQQ),

@(SSDKPlatformTypeRenren),

@(SSDKPlatformTypeGooglePlus)]

onImport:^(SSDKPlatformType platformType)

{

// 改动以下代码要注意,一个case对应一个break

switch (platformType)

{

case SSDKPlatformTypeWechat:

[ShareSDKConnector connectWeChat:[WXApi class]];

break;

case SSDKPlatformTypeQQ:

[ShareSDKConnector connectQQ:[QQApiInterface class] tencentOAuthClass:[TencentOAuth class]];

break;

case SSDKPlatformTypeSinaWeibo:

[ShareSDKConnector connectWeibo:[WeiboSDK class]];

break;

//人人

case SSDKPlatformTypeRenren:

[ShareSDKConnector connectRenren:[RennClient class]];

break;

default:

break;

}

}

onConfiguration:^(SSDKPlatformType platformType, NSMutableDictionary *appInfo)

{

// 以下的AppKey和appSecret都是 ShareSDK 官方程序带的,测试的时候可以用用,建议用自己去申请的。QQ、微信、微博授权都得分别去对应的开发者平台去申请

switch (platformType)

{

case SSDKPlatformTypeSinaWeibo:

//设置新浪微博应用信息,其中authType设置为使用SSO+Web形式授权

[appInfo SSDKSetupSinaWeiboByAppKey:@"568898243"

appSecret:@"38a4f8204cc784f81f9f0daaf31e02e3"

redirectUri:@"http://www.sharesdk.cn"

authType:SSDKAuthTypeBoth];

break;

case SSDKPlatformTypeWechat:

[appInfo SSDKSetupWeChatByAppId:@"wx4868b35061f87885"

appSecret:@"64020361b8ec4c99936c0e3999a9f249"];

break;

case SSDKPlatformTypeQQ:

[appInfo SSDKSetupQQByAppId:@"100371282"

appKey:@"aed9b0303e3ed1e27bae87c33761161d"

authType:SSDKAuthTypeBoth];

break;

case SSDKPlatformTypeRenren:

[appInfo        SSDKSetupRenRenByAppId:@"226427"

appKey:@"fc5b8aed373c4c27a05b712acba0f8c3"

secretKey:@"f29df781abdd4f49beca5a2194676ca4"

authType:SSDKAuthTypeBoth];

break;

// 如果上面代码已经把 GooglePlus 排除掉了,那么这里也要删除,不过不删除也没什么

case SSDKPlatformTypeGooglePlus:

[appInfo SSDKSetupGooglePlusByClientID:@"232554794995.apps.googleusercontent.com"

clientSecret:@"PEdFgtrMw97aCvf0joQj7EMk"

redirectUri:@"http://localhost"];

break;

default:

break;

}

}];


4.出发分享调用方法


//1、创建分享参数

NSArray* imageArray = @[[UIImage imageNamed:@"shareImg.png"]];

//(注意:图片必须要在Xcode左边目录里面,名称必须要传正确,如果要分享网络图片,可以这样传iamge参数 images:@[@"http://mob.com/Assets/images/logo.png?v=20150320"])

if (imageArray) {

NSMutableDictionary *shareParams = [NSMutableDictionary dictionary];

[shareParams SSDKSetupShareParamsByText:@"分享内容"

images:imageArray

url:[NSURL URLWithString:@"http://mob.com"]

title:@"分享标题"

type:SSDKContentTypeAuto];

//2、分享(可以弹出我们的分享菜单和编辑界面)

[ShareSDK showShareActionSheet:nil //要显示菜单的视图, iPad版中此参数作为弹出菜单的参照视图,只有传这个才可以弹出我们的分享菜单,可以传分享的按钮对象或者自己创建小的view 对象,iPhone可以传nil不会影响

items:nil

shareParams:shareParams

onShareStateChanged:^(SSDKResponseState state, SSDKPlatformType platformType, NSDictionary *userData, SSDKContentEntity *contentEntity, NSError *error, BOOL end) {

switch (state) {

case SSDKResponseStateSuccess:

{

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"分享成功"

message:nil

delegate:nil

cancelButtonTitle:@"确定"

otherButtonTitles:nil];

[alertView show];

break;

}

case SSDKResponseStateFail:

{

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"分享失败"

message:[NSString stringWithFormat:@"%@",error]

delegate:nil

cancelButtonTitle:@"OK"

otherButtonTitles:nil, nil];

[alert show];

break;

}

default:

break;

}

}

];}

总结一下遇到的坑:

1. 导入相关依赖库漏掉了,都怪自己太粗心,shareSDK一直在进步,新的方法和之前有所改进如果是用的老版本的,请更新到最新的版本.

2.关于腾讯qq的集成 在腾讯开放平台获取到的appid 是十进制的, URL Schemes要换算成十六进制的要大写

解释几点:URL Schemes里wx开头的那串,代表微信。tencent 100371282是对应的是QQ空间,QQ05FB8B52对应QQ好友分享。100371282是你在腾讯申请的APP ID,05FB8B52是AppID的16进制(如果AppID转换的16进制数不够8位则在前面补0,如转换的是:5FB8B52,则最终填入为:QQ05FB8B52 注意:转换后的字母要大写)

3.关于新浪微博的分享这个是比较坑的,首先要配置回调地址,新浪微博分享有2种方式,

若使用sso授权的,在新浪开发平台注册应用的时候那个安全域是必须配置的,比方说配置@"www.baidu.com",不然那会一直报错"appkey not bind domia",而且在分享的参数配置的时候也必须在那个text里面带有这个安全域,不然分享会失败.这个sso授权的机制比较坑,只要授权一次了,以后都不要登陆,直接就给发送一条微博,都不能编辑内容.另外如果要分享网络图片要申请高级权限

如果是采用客户端 那个安全域名是可以不配置,也不必带在那个text参数的,这种情况会跳到新浪微博的编辑页面输入一些说明文字或者表情.

(ps:再次吐槽一下新浪微博开放平台,账号密码输入错误了没有提示,一直停留在那里,搞得在下以来懵逼,给新浪反馈了,说问题还在解决中,我也是醉了)

你可能感兴趣的:(关于shareSDK使用遇到的一些问题)