首页 > 代码库 > ios 分享腾讯微博
ios 分享腾讯微博
//初始化weiboApi
tencent=[[WeiboApi alloc]initWithAppKey:tencentAppKey andSecret:tencentkAppSecret andRedirectUri:tencentkAppReddirectURI andAuthModeFlag:0 andCachePolicy:0]
//通过auth2.0代理登录
[tencent loginWithDelegate:self andRootController:self]
//代理成功,回调方式
- (void)DidAuthFinished:(WeiboApi *)wbapi_
{
NSString *str=@"";
UIImage *pic = [UIImage imageNamed:@"install.png"];
NSMutableDictionary *params = [[NSMutableDictionary alloc]initWithObjectsAndKeys:@"json",@"format",str, @"content",pic, @"pic",nil];
[tencent requestWithParams:params apiName:@"t/add_pic" httpMethod:@"POST" delegate:self];
}
这儿有一个不太清楚的地方,即tencentkAppReddirectURI回调地址,该回调地址是:
“我的应用》应用XXX》基本信息》应用网址”
ios 分享腾讯微博
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。