0

I've created an Facebook web app that posts to the users wall successfully however I also want to post to a Facebook page at the same time. How do I link my App to this Facebook page so I can post to the Facebook Pages wall ass well... Really been searching everywhere and come up empty handed...

Johannes Kuhn
  • 14,778
  • 4
  • 49
  • 73

1 Answers1

0

There is no automatic "post on the page wall everytime a user posts something". You will have to do this manually. So, its a two step process

  1. Post on the users wall, which will require a user access_token
  2. Post on the page wall, which will require a separate page access_token. I'm assuming you administer this page. Follow the steps listed here to get that access_token: Facebook Access Token for Pages This must be done completed server-side to prevent disclosing the access_token. So an AJAX call would be required.
Community
  • 1
  • 1
Tommy Crush
  • 2,790
  • 1
  • 15
  • 18
  • Should “J-SDK” in the title actually mean the JavaScript SDK – then using the page access token should be out of the question, cause every user could steal it if it gets exposed client-side. – CBroe Mar 05 '13 at 21:09