1
我從我的iPhone應用程序發佈照片至Facebook就好:更改文章標題爲iOS的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都鏈接在一起。
我已經Google搜索並在http://developers.facebook.com/docs/reference/api/photo/的字段中工作,例如'from'和'caption',但無法獲得照片標題的更改。任何指針將不勝感激。
感謝
我一直在尋找通過Facebook的文檔以及。試圖解決這個問題。它現在使用FB應用程序名稱。 – poperob