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.

In my app, I'd like to be able to post to both a user's profile and to any of their pages. Posting to their profile is relatively simple and well-documented, however, I've found little in the realm of sample code as to posting an image to a Page. I have read this page, however, it doesn't provide any examples as to how to do exactly what it says. Can anyone point me in the right direction?

share|improve this question

1 Answer

Try this method Using Facebook Graph API

//facebook post a image on wall

  NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       userImgView.image, @"picture",
                                       nil];

[facebook requestWithGraphPath:@"me/photos"
                     andParams:params
                 andHttpMethod:@"POST"
                   andDelegate:self];
share|improve this answer
Won't this just post the image to the user's wall? If they have started a page for a band, or a celebrity, how do I post the image to that page? – Rickay Dec 31 '12 at 14:19

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.