Is it possible to post on FB users' wall after he likes my FB page with application (or site connected to FB application)? I mean without permissions request. Do I get access token after like at all?
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.
|
You won't obtain an access token after a use like something on your site. You would need to ask for permissions to obtain any info about the user, and if you want to post to the wall of the user automatically (which by the way would be considered spam and trigger the deactivation of your app). An option would be to put a callback function when the user click the button like (using FB.Event.subscribe: http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/), and trigger a publication popup (FB.ui, method: 'feed': https://developers.facebook.com/docs/reference/dialogs/feed/) |
|||||
|
publish_streampermission from user, if he accepts, you then get token... – webarto Dec 12 '11 at 21:35