Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm posting photos to facebook from my iphone app just fine:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               _imageView.image,         @"picture",_facebookcomment.textView.text, @"message",
                               nil]; 
[appDelegate.facebookRequest requestWithGraphPath:@"me/photos/"
                                        andParams:params
                                    andHttpMethod:@"POST"
                                      andDelegate:appDelegate];

However i want to change the title field of the post and add parameters in, for example as instagram does, above each photo you have:

[name] took a [photo] with [instagram]. Name, photo and instgram are all linked.

I've googled and worked through the fields in http://developers.facebook.com/docs/reference/api/photo/, such as 'from' and 'caption' but cant get the photo title to change. Any pointers would be much appreciated.

Thanks

share|improve this question

1 Answer

[name] took a [photo] with [instagram].

I thing you’re looking for Open Graph actions here …

share|improve this answer
I've been looking through the facebook documentation as well. Trying to work out where this is set. It uses the FB application name at the moment. – poperob Jun 15 '12 at 19:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.