以主页身份发布到 Facebook 公共主页(而非用户)溶液:
2022-08-30 23:46:35
我使用Facebook PHP SDK 3.0.1(目前最新版本)。我需要做的是作为主页的身份在主页上发布。
我尝试将access_token替换为我从页面(/me/accounts)获得的access_token,但它现在说令牌由于某种原因无效。Facebook的“冒充”页面现在已经离线,我在API中没有看到任何关于做我想做的事情的信息。也许我迷路了,或者也许没有朝着正确的方向看。
下面是我修改并用于存档的示例.php:
require '../src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'xxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxx'
));
// Get User ID
$user = $facebook->getUser();
//Lists all the applications and pages
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$accounts_list = $facebook->api('/me/accounts');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
$page_selected = 'xxxxxxxxxxxx';
$page_access_token = $accounts_list['data']['0']['access_token'];
echo 'page_access_token:' . $page_access_token;
<?php
if (isset($_GET['publish'])){
try {
$publishStream = $facebook->api("/$page_selected/feed", 'post', array(
'access_token' => '$page_access_token',
'message' => 'Development Test message',
'link' => 'http://xxxxxxx.com',
'picture' => 'http://xxxxxx/xxxx_logo.gif',
'name' => 'xxxxxxxx Goes Here',
'description'=> 'And the exciting description here!'
)
);
//as $_GET['publish'] is set so remove it by redirecting user to the base url
} catch (FacebookApiException $e) {
echo($e);
echo $publishStream;
echo 'catch goes here';
}
}
?>
由于我无法回答自己的问题,因此我编辑了这个问题。
浏览了整个 API..
溶液:
在作为页面发布之前,您需要将access_token设置为一个页面拥有。
$facebook->setAccessToken($page_access_token);
就是这样做的,之后一切都像往常一样进行,无需修改post功能并添加“access_token”选项来发布。