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've been trying to find a way to past to a facebook fan page (which I'm admin) from my application using php, but can't find a way to do it. Any help?

share|improve this question
Please post the code that you wrote for this, outlining the problems it may have. – Karolis Mar 4 '11 at 8:21
been trying to work from this: blog.theunical.com/facebook-integration/… But I think this method is outdated... – the_archer Mar 4 '11 at 8:24

1 Answer

up vote 2 down vote accepted

If you are the admin of the page, you just need have the publish_stream permission and using the new PHP-SDK you post to your page the same way you do for your own feed:

$facebook->api("/PAGE_ID/feed","POST",array("message"=>"Hello Page!"));

enter image description here

share|improve this answer
1  
thanks for the heads up – the_archer Mar 5 '11 at 10:47

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.