Posting To Facebook Fan Page As Admin Using PHP
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?
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!"));
精彩评论