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 have created a Facebook application that lets the user to select a photo. I want that when the user clicks to select a photo, that photo is be published in their wall. After that, then have them approve the application.

Application link is: https://apps.facebook.com/emrijuaj/.

I have created it with a PHP random, and setup to Heroku servers.

share|improve this question

closed as not a real question by Josh Caswell, Sergio Tulentsev, casperOne Mar 23 '12 at 12:26

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.

2 Answers

You are looking for the publish_stream permission. Stream is a superset of data that contains Wall items. See: https://developers.facebook.com/docs/reference/fql/stream

share|improve this answer

POST the photo to [userid]/photos on the Graph API. Include the parameter message as the text to be included with the post.

More information is in the Photos section of the Facebook Graph API documentation.

share|improve this answer
Thank you for the response. But how can i add the POST TO WALL permission??? – Arsi Feb 1 '12 at 18:30
You need the publish_stream permission – Jordan Feldstein Feb 2 '12 at 5:35

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