使用facebook提供的最新sdk的oAuth支持,在评论留言中将图像发布到Facebook的留言板上。 请提供有用的链接。
答案 0 :(得分:0)
按照此处的说明集成最新的Facebook SDK并获得有效的会话:Facebook SDK for iOS Getting Started
SDK附带了一个示例应用程序,可以帮助您入门。
然后在你的代码中,执行类似这样的事情,其中声明“session”
Facebook * session;
- (void) sendFacebookMessage:(NSString *) messageText withCaption:(NSString *) captionText) andImage:(UIImage *) image {
NSMutableDictionary *args = [[[NSMutableDictionary alloc] init] autorelease];
[args setObject:captionText forKey:@"caption"];
[args setObject:messageText forKey:@"message"];
[args setObject:UIImageJPEGRepresentation(image, 0.7) forKey:@"picture"];
[session requestWithMethodName:@"photos.upload" andParams:args ndHttpMethod:@"POST" andDelegate:self];
}