一个是新浪微博,腾讯微博的分享按钮,一个是他们的绑定情况(其实就是是否授权)。点击微博分享中新浪或腾讯按钮,就进行相应的授权(若没授权),显示微博内容,而后发布微博。设置界面中的绑定,就是相关的应用授权。 呵呵,其实也蛮简单滴。

首先分别从新浪微博开放平台(http://open.weibo.com/)、腾讯微博开放平台(http://dev.t.qq.com/)中注册应用,获取到Appkey,AppSecret和AppURL(其中

AppURL是要自己填写的)。

然后分别下载相关的SDK.

http://wiki.open.t.qq.com/index.PHP/SDK%E4%B8%8B%E8%BD%BD#iOS_SDK

http://open.weibo.com/wiki/SDK

呵呵,上面这些都是些预备工作。下面正式开发。

建立一个工程,取名sinaqqbo,加入相关sdk文件。 总共5个文件:sina:libWeiboSDK.a,WeiboSDK.bundle 和WeiboSDK.h     qq:libTCWeiboSDK.a  WeiboApi.h

然后设置Info.plist文件的URL types键值,这个的作用是新浪客户端或腾讯客户端能回调到我们的程序来。他们通过一个bundle id 和这里设置的URL Schemes键值就会相应我们app的AppDelete中的 (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation委托 函数。

URL Schemes  的键值为 wb + AppKey。 腾讯和新浪两个就要建立两个数值。

以上就是工程上设置。

下面具体代码

//  AppDelegate.h

#import "WeiboSDK.h"

#import "WeiboApi.h"

@interface AppDelegate : UIResponder <UIApplicationDelegate,WeiboSDKDelegate,WBHttpRequestDelegate> {

BOOL bSinaWB;

NSString *sinaAccessToken;

}

@property (strong,nonatomic) WeiboApi          *qqwbAppDelete; //对腾讯微博的处理。做一个全局的变量

//

//  AppDelegate.m

#define sinaAppKey                                            @"yyyyyyyy"

#define sinaAppSecret                                         @"yyyyyyyyyyyyyyyyyyyyyyyyyy"

#define sinaAppURL                                            @"https://api.weibo.com/oauth2/default.html"

#define qqAppKey                                              @"xxxxxx"

#define qqAppSecret                                           @"xxxxxxxxxxxxxxxxxxxxxxxxx"

#define qqAppURL                                              @"https://api.weibo.com/oauth2/default.html"

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

[WeiboSDK enableDebugMode:YES];

[WeiboSDK registerApp:sinaAppKey];

}

//新浪,腾讯客户端调用接口

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation

{

if (bSinaWB) {

return [WeiboSDKhandleOpenURL:url delegate:self];

}

else {

return [_qqwbAppDeletehandleOpenURL:url];

}

}

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url

{

if (bSinaWB) {

return [WeiboSDKhandleOpenURL:url delegate:self];

}

else {

return [_qqwbAppDeletehandleOpenURL:url] ;

}

}

以下处理sina的相关

- (void)didReceiveWeiboRequest:(WBBaseRequest *)request

{

}

- (void)didReceiveWeiboResponse:(WBBaseResponse *)response {

if ([responseisKindOfClass:WBSendMessageToWeiboResponse.class])

{

switch (response.statusCode) {

caseWeiboSDKResponseStatusCodeSuccess: {//成功

}

break;

}

}

elseif ([response isKindOfClass:WBAuthorizeResponse.class])

{

if (0 == response.statusCode) {

//授权成功

}

else {

//授权失败

}

}

}

- (void)recvNotificationData:(NSNotification *)notification {

NSString *sName = notification.name;

if ([sName isEqualToString:@"Auth"]) {

//sina 的授权请求--》新浪微博客户端和网页版通用的命令

/*

新浪微博客户端,就是sso,通过新浪微博客户端授权和发布微博内容

网页版,就是组合命令直接发送到新浪微博服务端。

*/

WBAuthorizeRequest *request = [WBAuthorizeRequestrequest];

request.redirectURI = sinaAppURL;

request.scope = @"all";

[WeiboSDK sendRequest:request];

}

else if ([sNameisEqualToString:@"Data"]) {

if ([WeiboSDKisWeiboAppInstalled])

{

//安装了新浪微博客户端

WBMessageObject *message = [WBMessageObjectmessage];

message.text = @"文本";

WBImageObject *image = [WBImageObjectobject];

image.imageData = @"图片";//jpeg格式的图片,为NSData形式

message.imageObject = image;

WBSendMessageToWeiboRequest *request = [WBSendMessageToWeiboRequestrequestWithMessage:message];

[WeiboSDK sendRequest:request];

}

else {

BOOL bText = YES;

if (bText) {

NSMutableDictionary* parameters = [NSMutableDictionarydictionary];

[parameters setObject:@"文本"forKey:@"status"];

[WBHttpRequestrequestWithAccessToken:sinaAccessTokenurl:[NSStringstringWithFormat:@"%@",@"https://api.weibo.com/2/statuses/update.json"]httpMethod:@"POST"params:parametersdelegate:selfwithTag:@"1"];

}

else {

NSMutableDictionary* parameters = [NSMutableDictionarydictionary];

[parameters setObject:@"文本"forKey:@"status"];

[parameters setObject:@"图片"forKey:@"pic"]; //jpeg的 NSData 格式,

[WBHttpRequestrequestWithAccessToken:sinaAccessTokenurl:[NSStringstringWithFormat:@"%@",@"https://api.weibo.com/2/statuses/upload.json"]httpMethod:@"POST"params:parametersdelegate:selfwithTag:[NSStringstringWithFormat:@"1"]];

}

}

}

else if ([sNameisEqualToString:@"LogOut"]) {

[WeiboSDK logOutWithToken:sinaAccessTokendelegate:selfwithTag:@"1"];

}

}

#pragma Mark WBHttpRequestDelegate

- (void)request:(WBHttpRequest *)request didFailWithError:(NSError *)error {

//发布失败

}

- (void)request:(WBHttpRequest *)request didFinishLoadingWithResult:(NSString *)result {

//发布成功

}

、、、、、、、、、、、、、、、、、、、、、、

腾讯的实现方式和新浪的不一样。下面是腾讯的调用方式

//  MyViewController.h

#import "WeiboApi.h"

@interface MyViewController :UIViewController<WeiboAuthDelegate,WeiboRequestDelegate> {

}

@property(nonatomic,retain)WeiboApi           *qqwb;

@end

//  MyViewController.m

#import "AppDelegate.h"

- (void)viewDidLoad

{

[superviewDidLoad];

AppDelegate *delegate = (AppDelegate*)[UIApplicationsharedApplication].delegate;

if (nil != delegate.qqwbAppDelete) {

self.qqwb = delegate.qqwbAppDelete;

}

else {

self.qqwb = [[WeiboApialloc]initWithAppKey:qqAppKeyandSecret:qqAppSecretandRedirectUri:qqAppURL];

delegate.qqwbAppDelete = _qqwb;

}

}

- (void)buttonAction:(id)sender {

UIButton *button = (UIButton *)sender;

if (0 == button.tag) {

//新浪

[selfsendAuthWithType:0];

}

else {

//腾讯

[selfsendAuthWithType:1];

}

}

- (void)sendAuthWithType:(NSInteger)aIndex {

if (0 == aIndex) {

if ([self isAuthValid]) {

//显示内容界面

}

else {

[[NSNotificationCenterdefaultCenter] postNotificationName:@"Auth"object:nil];

}

}

else {

if ([self isAuthValid]) {

//显示内容界面

}

else {

[_qqwb loginWithDelegate:selfandRootController:self];

}

}

}

- (void)sendDataWithPic:(NSString *)sText ImageData:(NSData *)aImageData {

NSMutableDictionary* parameters = [NSMutableDictionarydictionary];

[parameters setObject:@"xml"forKey:@"format"];

[parameters setObject:sText forKey:@"content"];

[parameters setObject:aImageData forKey:@"pic"];

[_qqwb requestWithParams:parameters

apiName:[NSStringstringWithFormat:@"%@",@"t/add_pic"]

httpMethod:@"POST"delegate:self];

}

- (void)sendText:(NSString *)sText {

NSMutableDictionary* parameters = [NSMutableDictionarydictionary];

[parameters setObject:@"xml"forKey:@"format"];

[parameters setObject:sText forKey:@"content"];

[_qqwb requestWithParams:parameters

apiName:[NSStringstringWithFormat:@"%@",@"t/add"]

httpMethod:@"POST"delegate:self];

}

#pragma Mark WeiboAuthDelegate

- (void)DidAuthFinished:(WeiboApi *)wbapi {

//授权成功,后显示内容界面

}

#pragma Mark WeiboRequestDelegate

- (void)didReceiveRawData:(NSData *)data reqNo:(int)reqno {

//发布成功

}

- (void)didFailWithError:(NSError *)error reqNo:(int)reqno {

//发布失败

}

//以下是处理sina的授权验证函数,qq的未写。

- (void)removeAuthData

{

self.sinaid = nil;

self.sinatoken =nil;

self.sinadate =nil;

}

- (BOOL)isLoggedIn

{

returnsinaid && sinatoken && sinadate;

}

- (BOOL)isAuthorizeExpired

{

NSDate *now = [NSDatedate];

/*if (0 == bSina) {*/

return ([nowcompare:sinadate] ==NSOrderedDescending);

//}

/*else {

AppDelegate *delegate = (AppDelegate*)[UIApplication sharedApplication].delegate;

return [delegate.qqwbAppDelete isAuthorizeExpired];

}*/

}

- (BOOL)isAuthValid

{

return ([selfisLoggedIn] && ![selfisAuthorizeExpired]);

}

以下是网上资源

新浪:

http://blog.163.com/meyers_jiang/blog/static/1886480962011101131656181/

http://blog.sina.com.cn/s/blog_7d1531ed0101aapi.html

腾讯:

https://github.com/heloyue/TCWeiboSDK-LightVersion

http://www.cocoachina.com/newbie/tutorial/2012/0831/4684.html

实战新浪微博、腾讯微博的分享功能相关推荐

  1. 实战新浪微博、腾讯微博的分享功能(转)

    转载自:http://blog.csdn.net/nogodoss/article/details/17528749 我做的大概界面是如下图. 主要有两个界面,一个是新浪微博,腾讯微博的分享按钮,一个 ...

  2. js分享代码(新浪微博,腾讯微博,QQ空间,QQ好友)

    js分享代码(新浪微博,腾讯微博,QQ空间,QQ好友) 代码如下: <!DOCTYPE html> <html lang="en"> <head> ...

  3. 安卓 android一键分享 新浪微博 腾讯微博,qq空间,qq,人人网

    安卓 android一键分享 新浪微博 腾讯微博,qq空间,qq,人人网 附源码:  http://download.csdn.net/detail/zjgwxh/8678809

  4. 新浪微博与腾讯微博暂停评论功能

    查看原文:http://www.hellonet8.com/795.html 新浪微博和腾讯微博暂停"评论"功能三天,这可不是"愚人节"逗你玩儿.今天上午玩微博 ...

  5. php qq分享内容到指定qq,分享内容到新浪微博|腾讯微博|qq空间

    分享内容到新浪微博|腾讯微博|qq空间 (2013-10-29 14:05:30) 标签: 内容 分享 微博 空间 分类: php function forward_sinaweibo(title) ...

  6. 一、功能简述 正是微博如火如荼的时节,其中各个微博的分享功能是网站推广产品的好东东啊,此时如何方便快捷的使用微博的分享功能就显得比较重要了。我的站点每篇文章的底部有一些分享的链接: 不过我觉得这些分享

    一.功能简述 正是微博如火如荼的时节,其中各个微博的分享功能是网站推广产品的好东东啊,此时如何方便快捷的使用微博的分享功能就显得比较重要了.我的站点每篇文章的底部有一些分享的链接: 不过我觉得这些分享 ...

  7. 新浪微博,腾讯微博,QQ号码 联合登录。。。完善中...

    新浪微博 技术接口地址:http://open.t.sina.com.cn/wiki/SDK 腾讯微博 技术接口地址:http://open.t.qq.com/open-js/doc/ QQ号码登录 ...

  8. 一键分享到新浪微博、腾讯微博、搜狐微博、人人网、开心网、百度收藏等js代码大全...

    下面给大家一些分享的js代码,只要把代码插入自己的网页中稍微修改一下图片路径就可以用了,好了,废话少说,上代码:  document.writeln("<b>喜欢本文,那就分享到 ...

  9. Android进阶之使用第三方平台ShareSDK实现新浪微博的一键分享功能

    http://www.it165.net/pro/html/201402/9510.html http://www.it165.net/pro/html/201402/9510.html http:/ ...

最新文章

  1. boost::math::quadrature::gauss_kronrod用法的测试程序
  2. pip install cryptography error
  3. 测试电视是不是4k的软件,怎么判断4K电视真假?教你快速检测的方法!
  4. MySQL Event
  5. postmain请求中午乱码_完美解决Get和Post请求中文乱码的问题
  6. 怎样在 Ubuntu Unity Dash 添加关机、重启选项
  7. angular框架的SmartAdmin模板 如何请求后台数据
  8. Autojs微信自动操作免root脚本源码
  9. binlog2sql 用法
  10. 2. 查询表product——统计所有库存商品的总价值
  11. WiFi速率控制:吟游诗人速率控制算法(minstrel rate control algorithm for 802.11)
  12. 妖怪,看法宝-看反射的“照妖镜”如何让类原形毕露
  13. 数据库软件设计(8684)
  14. 深入浅出OpenGL三维渲染管线
  15. 用edge调试安卓或者手机app的样式
  16. 使用VC/MFC打印(Print)
  17. poi导出excel不可读
  18. sqlserver打开或创建mdf失败
  19. Postgre时间类型<>日期类型,坑了
  20. app inventor安安诞生记

热门文章

  1. html和css学习课件(新版)
  2. ChatGPT入门案例|商务智能对话客服(二)
  3. 全球与中国住院EHR系统市场现状及未来发展趋势(2022)
  4. RGB 色度空间转换
  5. MySQL全量同步和增量同步-
  6. vim开启粘贴板功能
  7. RVT贴片铝电解电容规格
  8. leaflet 渲染geoJSON数据
  9. awk命令详解(大全)
  10. 欧氏距离,马氏距离(转载)