我的 facebook 用户是几个 facebook 页面的管理员。我要做的是自动从外部 php 网站发布到这些页面之一的提要。例如,当网站上发生有趣的事情时,向页面的新闻流发布通知。
我在 facebook 中创建了一个应用程序,我正在使用 php fb api,如下所示:
//actual values redacted, obviously
$appId = 'my_app_id';
$pageId = 'my_page_id';
$secret = 'my_app_secret';
//First i'm getting the authtoken
$args = array(
'grant_type' => 'client_credentials',
'client_id' => $appid,
'client_secret' => $secret
);
$ch = curl_init();
$url = 'https://graph.facebook.com/oauth/access_token';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
$data = curl_exec($ch);
//this comes back from facebook like auth_token=xxxxx
$token = str_replace("access_token=", "", $data); //remove 'auth_token='
$facebook = new Facebook(array(
'appId' => $appId,
'secret' => $secret,
'cookie' => false,
'domain' => 'mydomain.net'
));
$facebook->api("/$pageId/feed", 'post', array(
'access_token' => $token,
'link' => 'http://www.example.com'
));
这会连接到 facebook 并尝试发布到提要,但没有说:
(#200) The user hasn't authorized the application to perform this action
所以我的问题是,我应该如何授权应用程序发布到提要?我在应用程序上看不到任何设置,并且似乎无法向页面“添加”权限。在这一点上我完全迷失了,facebook文档没有多大帮助。
任何帮助将非常感激。我已经为此浪费了一整天。