我正在通过我的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上面:
[name]用[instagram]拍了[照片]。名称,照片和程序图都是链接的。
我用Google搜索了http://developers.facebook.com/docs/reference/api/photo/中的字段,例如'from'和'caption',但无法更改照片标题。任何指针都会非常感激。
由于