上传图片后,我想将其发布在用户墙上。不幸的是,我在 Facebook UI 中收到以下错误:
“流中不允许使用 FBCDN 图像。文件路径”
似乎值 @"picture" 不会被接受,但为什么呢?当我 NSLog “thumbURL”时,它是正确的。我该如何解决?这是我的完整方法:
NSString *thumbURL = kDefaultThumbURL;
NSString *imageLink = [NSString stringWithFormat:[result objectForKey:@"link"]];
NSMutableDictionary* dialogParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kAppId, @"app_id",
imageLink, @"link",
thumbURL, @"picture",
@"imageName", @"name",
nil];
[appDelegate.facebook dialog:@"feed"
andParams:dialogParams
andDelegate:self];
谢谢你的帮助..