NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
photoDescription, @"message",
image, @"image",
nil];
[facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
这就是我将图像上传到 Facebook 的方法。图片已成功上传到 Facebook 'photos'。但我想将图像发布到我的 Facebook 订阅源。所以我尝试了,
[facebook requestWithGraphPath:@"me/feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
但它仍然是发布到“照片”的图像。它没有出现在Feed中...
我搜索并使用了不同的方法来解决问题,但我找不到任何有用的东西......