通过图谱API上传的照片“我/照片”未显示在Facebook上的新闻Feed中。但照片已成功添加到相册中,仅显示在时间轴中。我确信它几个月前就有效了,但今天我发现它现在还没有用。不幸的是,我没有在Facebook开发者网站上找到任何线索以及有关News Feed的任何更改日志。我是否必须调用另一个图谱API来列出上传的照片?
NSArray *permissions = [[NSArray arrayWithObjects:@"publish_stream", nil] retain];
[facebook authorize:permissions delegate:self];
...
...
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
image, @"picture",
commentView.text, @"message",
nil];
[facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];