Can a Facebook application impersonate a Facebook fan page? -
i've spent day going through broken examples, outdated code, poor documentation , frustration, bear me. need sanity check here. have this:
- a personal facebook account, in me
- a facebook fan page created under above account, called "jungledragon"
- a facebook application called "jungledragon"
what want automatically post updates wall of fan page. updates should not posted me, rather page itself.
i have gotten work (for bit):
the second entry manual entry. first 1 automated via code in php making use of facebook php sdk:
require_once 'src/facebook.php'; $facebook = new facebook("", ""); $facebook->setaccesstoken(""); try{ $facebook->api('/132114073492501/feed', 'post', array('message' => 'test message')); }catch(exception $o ){ print_r($o); }
i have left keys out of example. thing bugs me automated post created "via jungledragon", app, not page itself. app has no use end-users question "how post wall page, not app?"
please don't send me general graph api page. i've been there , suck.
yes, check out manage_page
permission.
Comments
Post a Comment