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

enter image description here

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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -