0

我需要在发布到我自己的墙上之前进行身份验证,所以这是我的代码

function get_app_token($appid, $appsecret)
{
$args = array(
'grant_type' => 'client_credentials',
'client_id' => $appid,
'client_secret' => $appsecret
);

$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);
$data = curl_exec($ch);

return json_encode($data);
}

$token = get_app_token($appid, $appsecret);
$attachment = array('message' => '',
        'access_token' => $token,
                'name' => 'Attachment Name',
                'caption' => 'Attachment Caption',
                'link' => 'http://apps.facebook.com/xxxxxx/',
                'description' => 'Description .....',
                'picture' => 'http://www.google.com/logo.jpg',
                'actions' => array(array('name' => 'Action Text', 
                                  'link' => 'http://apps.facebook.com/xxxxxx/'))
                );

$result = $facebook->api('/me/feed/', 'post', $attachment);

我收到错误OAuthException ,无效的 OAuth 访问令牌签名。

4

3 回答 3

0

您可以直接从 facebook 对象的会话数组中获取 access_token。

$session = $facebook->getSession();
$session['access_token'];

当然,您需要获得授权。如果未设置会话,则必须重定向到 loginUrl

$facebook->getLoginUrl(array('req_perms' => 'email,read_stream,publish_stream'));
// this will return url for your authorization

并请求您需要的许可。

于 2011-04-07T13:14:43.240 回答
0

$token值为access_token=<YOUR_ACCESS_TOKEN>

您不能将$token值直接传递给access_token参数。

$token = get_app_token($appid, $appsecret);
$access_token = split('=',$token);
$attachment = array(
                    'message' => '',
                    'access_token' => $access_token[1],
                    'name' => 'Attachment Name',
                    'caption' => 'Attachment Caption',
                    'link' => 'http://apps.facebook.com/xxxxxx/',
                    'description' => 'Description .....',
                    'picture' => 'http://www.google.com/logo.jpg',
                    'actions' => array(array('name' => 'Action Text', 
                              'link' => 'http://apps.facebook.com/xxxxxx/'))
              );

希望这将有助于完成这项工作...... :)

于 2011-04-07T16:28:10.517 回答
-1

client_credentials访问令牌不提供任何访问权限(/me在这种情况下,“我”是谁?没有任何东西可以将其与用户联系起来),更不用说发布访问权限了。它仅用于应用程序级 Graph API 调用,例如获取应用程序的 Insights 数据。

于 2011-04-07T13:53:34.203 回答