我试图简单地将其作为页面发布到Facebook页面。
我创建了一个应用,设置了权限(manage_pages),并请求了一个应用令牌(通过https://developers.facebook.com/docs/facebook-login/access-tokens/)。
我想我差不多了,但我收到了“PHP致命错误:未捕获的OAuthException:(#200)用户未授权应用程序执行此操作”错误。
<?php
require_once('facebook.php');
$config = array();
$config['appId'] = 'xxxxxxxxxxxxx';
$config['secret'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$config['fileUpload'] = false; // optional
$facebook = new facebook($config);
$access_token = "app token I got from link above";
$facebook->setAccessToken($access_token);
$page_id = "xxxxxxxxxxxxxxxx";
$args = array(
'access_token' => $access_token,
'message' => "This is just a test.",
'name' => "Just a test.",
'link' => "http://www.xxxx.com/",
'picture' => "http://www.xxxx.com/Logo.jpg",
'actions' => array(
'name' => 'See Pic',
'link' => "http://www.xxxx.com/Logo.jpg"
)
);
$post = $facebook->api("/$page_id/feed","post",$args);
我在哪里错过授权,所以我可以发帖到页面?我一直在我的应用程序仪表板下的设置,并没有看到我错过任何东西。
由于