我正在将照片上传到我的Facebook墙上uising Facebook IOS sdk graph API。一切正常,这是我正在使用的常用代码:
// Here i am compressing the image
NSData *yourImageData= UIImageJPEGRepresentation([_images objectAtIndex:pageIndex],0.5);
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Photo taken with my app", @"message", yourImageData, @"source", nil];
[_facebook requestWithGraphPath:@"/me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self];
所以我的问题是我应该进一步压缩我的形象吗?或者是否有其他方式可以更快地完成照片上传?
非常感谢, 转向
答案 0 :(得分:0)
请更新到新的SDK 3.0.8并使用FBRequest类
您可以看到如何在示例应用程序中将其作为SDK(Hackbook或Scrumptuous)的一部分来完成。
谢谢!