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 was wondering if you could help me - with PHP, I would like to have a system where after going through a like-gate, the customer uploads a file (I'm fine with doing this) and once they have done that the application will write a post on the users wall to tell them.

As a second stage to this, when in the admin tool for the app, the administrator puts a comment against the image that person has uploaded, we'd like the comment to go onto the customers wall - and this might be a week after.

Any help gratefully appreciated :)

share|improve this question

closed as not a real question by bkaid, Michael Myers Jan 13 '12 at 21:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

You will want to use the Graph API http://developers.facebook.com/docs/reference/api/

You will need permissions from the user: http://developers.facebook.com/docs/reference/api/permissions/ Specifically publish_stream.

Posting to someone's wall is easy. From me/posts HTTP Post the correct parameters. See the post section of http://developers.facebook.com/docs/reference/api/user/

You can try it out here: http://developers.facebook.com/tools/explorer

share|improve this answer

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