我可以在朋友的Facebook墙上发布消息,但我想发布一张图片。我需要在代码中添加什么内容?
这是我目前的代码:
[[FBRequestWrapper defaultManager] sendFBRequestWithGraphPath:_graphPath params:
[NSMutableDictionary dictionaryWithObject:@"Post on wall :)" forKey:@"message"]
andDelegate:self];
答案 0 :(得分:0)
对此的一个解决方案是使用标题发布到用户的相册。为此,您需要在字典中添加其他参数:
[[FBRequestWrapper defaultManager] sendFBRequestWithGraphPath:_graphPath params:
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"Post on wall :)", @"message", image, @"source"] andDelegate:self];
image
是您要发布的UIImage
。
您还需要确保_graphpath
指向用户相册:@"me/photos"