Ok, there are alot of similar questions here which I have found to be of aid, but nothing clear enough for me to work with(probably because it is my first time integrating facebook in my apps).
I have read this: Facebook Access Token for Pages and this post as page on facebook page wall but none of them describe the process which they have gone through to setup it all up.
I want to allow multiple users to post to a Facebook page I own, possibly at the same time, which means that I do not want the users to require logging in in order to post on the wall through the application.
What I understand:
- I believe that this must be server side script for it to work as I need it to.
- I have a FB app set up, which I know I require it.
- I read this https://developers.facebook.com/docs/facebook-login/access-tokens/
What I don't understand:
Which type of access token do I need ? An App Access token, or a Page Access token ? Whatever the answer, how should I go about getting the token ? Are there multiple/different ways of doing it? As i have found several answers with different instructions, such as obtaining it on the fly using the HTTP get request such as
GET https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID
&client_secret=YOUR_APP_SECRET
&grant_type=client_credentials
or getting it by visiting : https://developers.facebook.com/tools/explorer/AppID/?method=GET&path=me%2Faccounts
So Which is it? I am confused. Any help regarding this is greatly appreciated
NB: Development is done using cakePHP.