我可以从我的 iphone 应用程序将照片发布到 Facebook:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
_imageView.image, @"picture",_facebookcomment.textView.text, @"message",
nil];
[appDelegate.facebookRequest requestWithGraphPath:@"me/photos/"
andParams:params
andHttpMethod:@"POST"
andDelegate:appDelegate];
但是,我想更改帖子的标题字段并在您拥有的每张照片上方添加参数,例如像 instagram 那样:
[姓名] 与 [instagram] 拍了一张 [照片]。姓名、照片和 instgram 都是相关联的。
我搜索并浏览了http://developers.facebook.com/docs/reference/api/photo/中的字段,例如“来自”和“标题”,但无法更改照片标题。任何指针将不胜感激。
谢谢