I am attempting to add functionality for a web based application to make posts to Facebook via the API. I have things working to the point where it will post via my application. The only thing I don't like is that you have to login to Facebook with the appropriate account before it will allow this to happen. This causes potential problems as I can't guarentee that the same Facebook account will be used with all users of this application.
How do I set things up so that I don't have to force a login to Facebook everytime I want to make a wall post?
FYI: This is setup to use a Facebook account (where the app id / secret were generated from) and post to a company page wall to which that account is set as an admin.
My code is as follows:
include siteRoot . "/_facebook/facebook.php";
$app_id = "xxxxx";
$app_secret = "xxxxx";
$page_id = "xxxx";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$login_url = $facebook->getLoginUrl(
array('scope' => 'publish_stream')
);
if (! $facebook->getUser()) {
echo '<script type="text/javascript">';
echo "top.location.href = '$login_url'";
echo '</script>';
exit;
}
if ($facebook->getUser()) {
try {
$page_info = $facebook->api("/$page_id?fields=access_token");
if( !empty($page_info['access_token']) ) {
$args = array(
'access_token' => $page_info['access_token'],
'message' => $message
);
$post_id = $facebook->api("/$page_id/feed","post",$args);
}
} }
manage_pagespermission? are you getting the correct access token for sure? – bool.dev Jan 2 '12 at 4:52