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.

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?

share|improve this question
You need to ask for publish_stream permission from user, if he accepts, you then get token... – webarto Dec 12 '11 at 21:35

1 Answer

up vote 0 down vote accepted

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/)

share|improve this answer
I'll need to post something at his wall say at his birthday. Will this be considered spam? – Eugene Shaine Mednikov Dec 13 '11 at 7:21
If it's the goal of the application and the user consents to it, then it will be fine. In this case, ask for the publish_stream permission. – Julien L Dec 13 '11 at 11:00

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.