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.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 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

link|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
feedback

Your Answer

 
or
required, but never shown

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