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 wrote the app that posts to user's wall and the wall of her friend, and to accomplish this, asks for publish_stream permission, but now I got the opinion from another guy that this is too much and that there is a simpler way (less scary permissions dialog). However I can't reach him at the moment to ask what he has meant exactly. What is the truth here?

share|improve this question

1 Answer

up vote 2 down vote accepted

You don't need any permissions at all with the javascript SDK to call fb.UI with a 'method' of 'feed' because the user will see a dialog box to confirm and enter a message of what they are sharing. To publish from server-side code like PHP SDK, you will need publish_stream.

share|improve this answer
That's the one, it is a few more clicks for the user, but at least the scary permissions dialog really isnt there. – DMCS Feb 1 '12 at 20:50
Is it possible to style the sharing dialog maybe? – jayarjo Feb 2 '12 at 7:16
Interestingly enough that resource while it says that the same thing is possible with GraphAPI, doesn't mention any required permission, which is at least confusing for newcomer... :| – jayarjo Feb 2 '12 at 7:22

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.