1

我知道如何在我的墙上发布一些东西,$facebook->api('/me/feed/', 'post', $feed); 但是如何在我的 Facebook 应用程序页面上发布提要,并且这个提要必须由应用程序发布

4

1 回答 1

4

干得好:

// we need to get an application access_token first
$token_url = "https://graph.facebook.com/oauth/access_token?" .
   "client_id=" . $app_id .
   "&client_secret=" . $app_secret .
   "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);

// seperate the string returned to use it in the post array
$arr = explode("=",$app_token);
$app_token = $arr[1];

$post_id = $facebook->api("/$app_id/feed", "POST", array("access_token"=>$app_token,"message"=>"hello app!"));
于 2011-02-07T13:56:51.610 回答