通过 Graph API“我/照片”上传的照片未显示在 Facebook 的新闻提要中。但照片已成功添加到相册中,并且仅显示在时间轴中。我确信它几个月前有效,但今天我发现它现在不起作用。不幸的是,我在 Facebook 开发者网站和任何有关 News Feed 的更改日志中没有找到任何线索。我是否必须调用另一个 Graph 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];