我是Facebook群组的管理员(经理角色)。我创建了一个应用,并存储了id
和secret
。
我希望我的应用能够在Facebook群组的Feed中发布内容。但是当我尝试发布时,我收到错误190 Invalid OAuth access token signature
,即使我能够使用publish_stream和offline_access范围成功获取access_token
。它的形式为NNNNNNNNNNNNNNN|XXXXXXXXXXXXXXXXXXXXXXXXXXX
,其中N是数字(15),X是字母或数字(27)。
我应该做些什么来完成这项工作?这是我正在使用的代码:
public static function postToFB($message, $image, $link) {
//Get App Token
$token = self::getFacebookToken();
// Create FB Object Instance
$facebook = new Facebook(array(
'appId' => self::fb_appid,
'secret' => self::fb_secret,
'cookie' => true
));
//$token = $facebook->getAccessToken();
//Try to Publish on wall or catch the Facebook exception
try {
$attachment = array('access_token' => $token,
'message' => $message,
'picture' => $image,
'link' => $link,
//'name' => '',
//'caption' => '',
'description' => 'More...',
//'actions' => array(array('name' => 'Action Text', 'link' => 'http://apps.facebook.com/xxxxxx/'))
);
$result = $facebook->api('/'.self::fb_groupid.'/feed/', 'post', $attachment);
} catch (FacebookApiException $e) { //If the post is not published, print error details
echo '<pre>';
print_r($e);
echo '</pre>';
}
}
返回令牌的代码
//Function to Get Access Token
public static function getFacebookToken($appid = self::fb_appid, $appsecret = self::fb_secret) {
$args = array(
'grant_type' => 'client_credentials',
'client_id' => $appid,
'client_secret' => $appsecret,
'redirect_uri' => 'https://www.facebook.com/connect/login_success.html',
'scope' => 'publish_stream,offline_access'
);
$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);
try {
$data = curl_exec($ch);
} catch (Exception $exc) {
error_log($exc->getMessage());
}
return json_encode($data);
}
如果我在发布代码中取消注释$token = $facebook->getAccessToken();
,则会再次出现错误(#200) The user hasn't authorized the application to perform this action
。
我使用的令牌 developers.facebook.com/tools/explorer/是另一种形式,更长时间,我可以发布到群组页面Feed。
如果没有Graph API Explorer的复制/粘贴,如何进行此操作?如何以群组形式发布而不是以用户身份发布?
感谢。