我有以下代码段,它可以在Facebook上作为我自己的用户帐户在Facebook页面上发布。
值FACEBOOK_*
在代码库中已定义。
// SDK Version 5.0
$fb = new Facebook\Facebook([
'app_id' => FACEBOOK_APP_ID,
'app_secret' => FACEBOOK_APP_SECRET,
'default_graph_version' => 'v2.4',
]);
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post('/'.FACEBOOK_PAGE_ID.'/feed', $postData, FACEBOOK_ACCESS_TOKEN);
$postId = $response->getGraphNode();
现在我的问题是我如何才能将其作为实际页面发布而不是我的帐户,即该页面的管理员。
我已经看过SDK文档了,我一直在圈子里,有很多v4的例子但是因为它已被弃用我试图使用v5而且似乎无法弄明白,我发现的帖子归属或模仿的任何链接都是SDK的v5中的死链接。
我可以看到,我需要拨打/ {user-id} / accounts来获取我的用户https://developers.facebook.com/docs/facebook-login/access-tokens#pagetokens
页面的访问令牌但要获得{user-id}
,我必须使用SDK文档中的以下示例来查询用户:
// Make sure to load the Facebook SDK for PHP via composer or manually
use Facebook\FacebookRequest;
use Facebook\GraphUser;
use Facebook\FacebookRequestException;
if($session) {
try {
$user_profile = (new FacebookRequest(
$session, 'GET', '/me'
))->execute()->getGraphObject(GraphUser::className());
echo "Name: " . $user_profile->getName();
} catch(FacebookRequestException $e) {
echo "Exception occured, code: " . $e->getCode();
echo " with message: " . $e->getMessage();
}
这里的问题是我不知道如何获得一个我需要获取用户数据的会话,这些会话令我获得了访问令牌,允许我将访问令牌传递到我上面的代码片段中,这就是我的正确理解这一切!?
任何帮助都非常感谢!
答案 0 :(得分:8)
我使用类,所以我将代码调整到上面的示例中。经过测试和运行的代码。
使用您使用的方法获取用户访问令牌(请参阅指南here)后,我们必须获取长期访问令牌。将其添加到您的代码中:
session_start();
$helper = $fb->getRedirectLoginHelper();
try {
$accessToken = $helper->getAccessToken();
} catch(Facebook\Exceptions\FacebookSDKException $e) {
// There was an error communicating with Graph
echo $e->getMessage();
exit;
}
if (isset($accessToken)) {
$client = $fb->getOAuth2Client();
try {
$accessToken = $client->getLongLivedAccessToken($accessToken);
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo $e->getMessage();
exit;
}
$response = $fb->get('/me/accounts', (string) $accessToken);
foreach ($response->getDecodedBody() as $allPages) {
foreach ($allPages as $page ) {
if (isset($page['id']) && $page['id'] == $pageId) { // Suppose you save it as this variable
$appAccessToken = (string) $page['access_token'];
break;
}
}
}
$response = $fb->post(
'/'.$pageId.'/feed',
array(
"message" => "Message",
"link" => "http://www.example.com",
"picture" => "http://www.example.net/images/example.png",
"name" => "Title",
"caption" => "www.example.com",
"description" => "Description example"
),
$appAccessToken
);
// Success
$postId = $response->getGraphNode();
echo $postId;
} elseif ($helper->getError()) {
var_dump($helper->getError());
var_dump($helper->getErrorCode());
var_dump($helper->getErrorReason());
var_dump($helper->getErrorDescription());
exit;
}
说明:您必须知道您是管理员的页面:
$response = $fb->get('/me/accounts', (string) $accessToken);
然后搜索表格以检索我们感兴趣的the access token of the page
(我已选择使用引用页面的ID)。
最后,只需运行SDK提供的post函数:
$response = $fb->post(
'/'.$pageId.'/feed',
array(
"message" => "Message",
"link" => "http://www.example.com",
"picture" => "http://www.example.net/images/example.png",
"name" => "Title",
"caption" => "www.example.com",
"description" => "Description example"
),
$appAccessToken
);