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.

How to post to a page's Wall using Facebook Graph API for iPhone?

Should I need to prompt for any permission for that?

Is it possible or not?

Thanks in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can using the Post method. It requires the publish_stream permission. The user needs to have "liked" the page in question.

To publish a wall post, POST the message and optional attachment to the feed/wall of the user, page or group, i.e., http://graph.facebook.com/PROFILE_ID/feed.

Annoyingly, the one thing that Graph API will not allow, is to let the user "like" a page through it. The user must already have "liked" the page. (catch-22)

Graph API Page documentation

share|improve this answer
Thank you @dredful, PROFILE_ID = page id true? – yogs Apr 28 '11 at 3:26
@yogs: Yes, PROFILE_ID = page id – dredful Apr 28 '11 at 13:49

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.