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.

using facebooks api... how do you post to a page a user likes on that users behalf... for example I have a user that likes a certain page. They can log into my app and make a post on that pages wall via my app instead of logging into facebook to do it.

share|improve this question

1 Answer

up vote 1 down vote accepted

If the user grants your app the publish_stream permission then you can post on his behalf on pages he likes (or pages that don't require to like in order to post).

You can try it yourself with the Graph API Explorer, just go there and click the Get Access Token button, then go to Extended Permissions tab, select "publish_stream" and confirm.

Then in the address field put a page you like, let's say southpark/feed and submit, you should see the feed of that page. Now, change the method to the left of the address field to POST and click the Add Field link and write in the name "message", enter a value and submit, you should get an id of the post as a result.

share|improve this answer
AWESOME IT WORKS! lol i wish i would have stumbled across that tool sooner thanks for the help i got it working now! Now i just need to get it to work with PAGE_ID/photos/ instead of /feed/ – Banning Mar 14 '12 at 0:45
According to the docs you need both publish_stream and manage_pages permissions to post to a page (both to the feed and to the photos) but since we know you don't need the manage_pages for the feed, my guess is that you will be able to do it for the photos as well. The page admins can disable users from uploading photos though, just as they can disable users from posting on the wall. – Nitzan Tomer Mar 14 '12 at 0:57
right that would be my guess... but when i switch it to /photos/ it doesn't seem to work... oh well i'll keep cracking on it. You've shown me an awesome tool to use. Hopefully this thread helps someone else out... oh and btw when i post to the page it doesn't show up on the wall i have to switch the view to "posts by others"... so maybe thats what the docs are talking about as far as manage_pages... but that doesn't for me as i need people who aren't admins to be able to publish :) – Banning Mar 14 '12 at 1:04

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.