当我尝试在 Facebook 上分享我的 iOS 应用程序的屏幕截图时,我收到以下回复:
FB 错误:操作无法完成。(facebookErrDomain 错误 368。)
发布照片代码
NSMutableDictionary *params = [NSMutableDictionary
dictionaryWithObjectsAndKeys:fbImage, @"picture", fbContent, @"caption"
,nil];
[_facebook requestWithMethodName:@"photos.upload" andParams:params
andHttpMethod:@"POST" andDelegate:self];
我使用截图
UIGraphicsBeginImageContext(self.view.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
问题是,我可以使用完全相同的代码在我的其他应用程序中发布屏幕截图。那么这是否意味着这不仅仅是因为 fb 服务器问题?有什么我可能会丢失的吗?
编辑 我也在同一个项目中使用 FBConnect 来共享文本,使用:
[_facebook dialog:@"feed" andParams:params andDelegate:self];
参数为:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
url, @"link",
name, @"name",
caption, @"caption",
desc, @"description",
nil];
它工作得非常好。