All I have:
Facebook Application
with AppID, AppSecret, ApiKey
Facebook Page
with PageID
Own Facebook account
I'm admin and creator of application and page above.
So, I need to post to Facebook's Page's wall some data from my website.
E.g. I write some blog-post, and I'd like to get name, short-description and picture on my Facebook Page's wall. Or by cron-job, I need to write on Facebook's Page's wall some articles every day in automatic mode.
Can anyone explain, step-by-step, what actions should I do?
I've read this link: http://developers.facebook.com/docs/authentication/ (Page Login), but I don't understand, what to write in my code.
Is it possible to post to Facebook's Page's wall from my PHP web-site automatically?
Please help!
UPD1
I request for App Access Token?
$url = 'https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id='
.Yii::app()->params['FacebookAppID'].'&client_secret='.Yii::app()->params['FacebookSecret'];
Answer is like this (fake symbols):
access_token=326584076429|ax3-D39YbpDcR9rMRQn_fMvNu_s
What access_token is it? Application Access Token? How to get User's Access Token?
If I try to use this access token here https://developers.facebook.com/tools/explorer?method=GET&path=me%2Faccounts
I got message: An active access token must be used to query information about the current user
So please, help. How to obtain right access token?
UPD2:
How can I get right Facebook tokens in my application without any client interaction?
I'm admin and creator of Facebook Application and Facebook Page.
Please help :)