我是 Facebook 群组的管理员(经理角色)。我创建了一个应用程序,并将其id
和secret
.
我希望我的应用能够在 Facebook 群组的提要上发布一些内容。但是当我尝试发布时,我得到了错误190 Invalid OAuth access token signature
,即使我能够成功地获得access_token
带有 publish_stream 和 offline_access 范围的内容。它的形式为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/获得的令牌是另一种形式,更长,我可以将其发布到组页面提要。
如何在不从Graph API Explorer复制/粘贴的情况下执行此操作,以及如何以组的形式发布而不是以用户的身份发布?
谢谢。