找了几个小时后,我找不到这个问题的答案。希望有人可以帮助我。我使用的是最新的facebook PHP SDK(v.3.2.0)。
我有一个公司的粉丝页面(页面A),该公司的几个人也有粉丝页面(页面B,C,D等)。问题是我们希望将页面B(和C和D)的帖子发布到页面A,但发件人(发布用户)应该是页面用户B.
您可以将其作为另一个页面用户B发布到页面墙A吗?
我已经尝试了所有方法,并且有以下工作:
最后一部分是循环遍历数组,以用户B,C或D的身份发布到页面A的墙上。
我向/ [page-id-page-A] / feed发送一个POST请求,其中包含一条消息和页面B的页面标记。请求后出现错误:
未捕获OAuthException:(#200)演员是页面的帖子也不能包含target_id
将页面用户B发布到页面B的墙上工作正常。作为页面用户B发布到页面A不会。如果这应该有用,那么文档并不清楚,但是从facebook UI可以看出这是可能的。
希望有人可以指出我正确的方向。对于想要使用它的人来说,我使用的代码如下所示。
<?php
/* ************************
* Helper functions
************************ */
function sortbykey($a, $b) {
return $a['time'] - $b['time'];
}
/* ************************
* Start app
************************ */
// Initialize Facebook
require_once("facebook.php");
$facebook = new Facebook(array('appId' => '<appID>','secret' => '<appSecret>'));
// Get facebook user (if possible)
$user_id = $facebook->getUser();
$login_params = array(
'scope' => 'manage_pages,publish_stream',
'redirect_uri' => '<app_url>/index.php'
);
if($user_id) {
// We have a user ID, so probably a logged in user.
// If not, we'll get an exception, which we handle below.
try {
// Get user profile and extended access tokens for requests
$user_profile = $facebook->api('/me','GET');
$facebook->setExtendedAccessToken();
$access_token = $facebook->getAccessToken();
} catch(FacebookApiException $e) {
// If the user is logged out, you can have a
// user ID even though the access token is invalid.
// In this case, we'll get an exception, so we'll
// just ask the user to login again here.
$login_url = $facebook->getLoginUrl($login_params);
echo '<div class="login"><a href="' . $login_url . '">login</a></div>';
error_log($e->getType());
error_log($e->getMessage());
}
} else {
// No user, print a link for the user to login
$login_url = $facebook->getLoginUrl($login_params);
echo '<div class="login"><a href="' . $login_url . '">login</a></div>';
}
if(isset($access_token) && !empty($access_token)){
// Provide logout options
$logout_url = $facebook->getLogoutUrl();
echo '<div class="logout"><a href="' . $logout_url . '">logout</a></div>';
// Get user pages and tokens
$user_pages = $facebook->api('/me/accounts','GET');
$page_tokens = array();
foreach($user_pages['data'] as $page){
$page_tokens[$page['id']] = $page['access_token'];
}
// Set challenger ID's and page ID
$persons = array('page-ID-B','page-ID-C','page-ID-D');
$page = 'page-ID-A';
// Loop over persons and create stream of messages.
$messages = array();
foreach($persons as $person){
$token = $page_tokens[$person];
$feed = $facebook->api('/'.$person.'/feed','GET');
foreach($feed['data'] as $status){
// Add page token to message to post as page and time to sort by
$status['token'] = $token;
$status['time'] = strtotime($status['created_time']);
// Only add messages that aren't imported yet
if($status['time'] > $_SESSION['lastupdatetime']) {
$messages[] = $status;
}
}
}
// Sort by time value in nested array
usort($messages,"sortbykey");
// Post messages to timeline
foreach($messages as $status){
// Post to MScHALLENGE page based on type
switch($status['type']){
case 'status':
case 'link':
// Build post data
$data = array();
if(isset($status['message'])) $data['message'] = $status['message'];
if(isset($status['link'])) $data['link'] = $status['link'];
// Post to facebook
if(!empty($data)){
$data['access_token'] = $status['token'];
$post = $facebook->api('/'.$page.'/feed','POST',$data);
}
break;
}
// Save last update time
$_SESSION['lastupdatetime'] = $status['time'];
}
}
?>
答案 0 :(得分:1)
这不受支持,因为我最近做了一些测试。即使您是两者 PageA和PageB的管理员,也不能在PageA上作为PageB发布(其中“语音”设置为PageB,帖子显示为由PageB创作)。语音(即“由PageB创作”)适用于您管理的页面,并使用属于相同页面的语音在页面上创建帖子。至少这是API当前的行为方式。